Question1. Write a python program to display all the header tags from‘en.wikipedia.org/wiki/Main_Page’.
from urllib.request import urlopen
from bs4 import BeautifulSoup
html=urlopen('https://en.wikipedia.org/wiki/Main_Page')
soup=BeautifulSoup(html,"html.parser")
headers=soup.find_all(['h1','h2','h3','h4','h5','h6'])
print('List all the header tags :', *headers, sep='\n\n')
header=[]
for i in headers:
header.append(i.text.replace("\n",""))
header
import pandas as pd
HEADER=pd.DataFrame({})
HEADER['header']=header
HEADER
List all the header tags : <h1 class="firstHeading" id="firstHeading">Main Page</h1> <h2 class="mp-h2" id="mp-tfa-h2"><span id="From_today.27s_featured_article"></span><span class="mw-headline" id="From_today's_featured_article">From today's featured article</span></h2> <h2 class="mp-h2" id="mp-dyk-h2"><span class="mw-headline" id="Did_you_know_...">Did you know ...</span></h2> <h2 class="mp-h2" id="mp-itn-h2"><span class="mw-headline" id="In_the_news">In the news</span></h2> <h2 class="mp-h2" id="mp-otd-h2"><span class="mw-headline" id="On_this_day">On this day</span></h2> <h2 class="mp-h2" id="mp-tfl-h2"><span id="From_today.27s_featured_list"></span><span class="mw-headline" id="From_today's_featured_list">From today's featured list</span></h2> <h2 class="mp-h2" id="mp-tfp-h2"><span id="Today.27s_featured_picture"></span><span class="mw-headline" id="Today's_featured_picture">Today's featured picture</span></h2> <h2 class="mp-h2" id="mp-other"><span class="mw-headline" id="Other_areas_of_Wikipedia">Other areas of Wikipedia</span></h2> <h2 class="mp-h2" id="mp-sister"><span id="Wikipedia.27s_sister_projects"></span><span class="mw-headline" id="Wikipedia's_sister_projects">Wikipedia's sister projects</span></h2> <h2 class="mp-h2" id="mp-lang"><span class="mw-headline" id="Wikipedia_languages">Wikipedia languages</span></h2> <h2>Navigation menu</h2> <h3 class="vector-menu-heading" id="p-personal-label"><span>Personal tools</span> </h3> <h3 class="vector-menu-heading" id="p-namespaces-label"><span>Namespaces</span> </h3> <h3 class="vector-menu-heading" id="p-variants-label"><span>Variants</span> </h3> <h3 class="vector-menu-heading" id="p-views-label"><span>Views</span> </h3> <h3 class="vector-menu-heading" id="p-cactions-label"><span>More</span> </h3> <h3> <label for="searchInput">Search</label> </h3> <h3 class="vector-menu-heading" id="p-navigation-label"><span>Navigation</span> </h3> <h3 class="vector-menu-heading" id="p-interaction-label"><span>Contribute</span> </h3> <h3 class="vector-menu-heading" id="p-tb-label"><span>Tools</span> </h3> <h3 class="vector-menu-heading" id="p-coll-print_export-label"><span>Print/export</span> </h3> <h3 class="vector-menu-heading" id="p-wikibase-otherprojects-label"><span>In other projects</span> </h3> <h3 class="vector-menu-heading" id="p-lang-label"><span>Languages</span> </h3>
| header | |
|---|---|
| 0 | Main Page |
| 1 | From today's featured article |
| 2 | Did you know ... |
| 3 | In the news |
| 4 | On this day |
| 5 | From today's featured list |
| 6 | Today's featured picture |
| 7 | Other areas of Wikipedia |
| 8 | Wikipedia's sister projects |
| 9 | Wikipedia languages |
| 10 | Navigation menu |
| 11 | Personal tools |
| 12 | Namespaces |
| 13 | Variants |
| 14 | Views |
| 15 | More |
| 16 | Search |
| 17 | Navigation |
| 18 | Contribute |
| 19 | Tools |
| 20 | Print/export |
| 21 | In other projects |
| 22 | Languages |
QUESTION2. Write a python program to display IMDB’s Top rated 100 movies’ data (i.e. Name, IMDB rating, Year of release).
from bs4 import BeautifulSoup
import requests
import pandas as pd
imdb=requests.get("https://www.imdb.com/search/title/?count=100&groups=top_1000&sort=user_rating")
soup=BeautifulSoup(imdb.content)
print(soup.prettify())
name=soup.find_all("h3",class_="lister-item-header")
Name=[]
for i in name:
for j in i.find_all("a"):
Name.append(j.text.replace("\n",""))
imdb_rating=soup.find_all("div",class_="inline-block ratings-imdb-rating")
Imdb_Rating=[]
for i in imdb_rating:
Imdb_Rating.append(i.text.replace("\n",""))
year_of_release=soup.find_all("span",class_="lister-item-year text-muted unbold")
Year_of_Release=[]
for i in year_of_release:
Year_of_Release.append(i.text.replace("\n()",""))
IMDB_TOP_MOVIES=pd.DataFrame({})
IMDB_TOP_MOVIES['Name']=Name
IMDB_TOP_MOVIES['Imdb_Rating']=Imdb_Rating
IMDB_TOP_MOVIES['Year_of_Release']=Year_of_Release
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#">
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<script type="text/javascript">
var IMDbTimer={starttime: new Date().getTime(),pt:'java'};
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadTitle", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);
</script>
<title>
IMDb "Top 1000"
(Sorted by IMDb Rating Descending) - IMDb
</title>
<script>
(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadTitle", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadTitle", {wb: 1});
}
</script>
<link href="https://www.imdb.com/search/title/?groups=top_1000" rel="canonical"/>
<meta content="http://www.imdb.com/search/title/?groups=top_1000" property="og:url"/>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadIcons", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);
</script>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_desktop_32x32._CB1582158068_.png" rel="icon" sizes="32x32"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPad_retina_167x167._CB1582158068_.png" rel="icon" sizes="167x167"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPhone_retina_180x180._CB1582158069_.png" rel="icon" sizes="180x180"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile._CB479963088_.png" rel="apple-touch-icon"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-76x76._CB479962152_.png" rel="apple-touch-icon" sizes="76x76"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-120x120._CB479963088_.png" rel="apple-touch-icon" sizes="120x120"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-web-152x152._CB479963088_.png" rel="apple-touch-icon" sizes="152x152"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/android-mobile-196x196._CB479962153_.png" rel="shortcut icon" sizes="196x196"/>
<meta content="#000000" name="theme-color"/>
<link href="https://m.media-amazon.com/images/S/sash/MzfIBMq9GBucYqW.xml" rel="search" title="IMDb" type="application/opensearchdescription+xml"/>
<script>
(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadIcons", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadIcons", {wb: 1});
}
</script>
<meta content="advsearch" property="pageType"/>
<meta content="title" property="subpageType"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" rel="image_src"/>
<meta content="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" property="og:image"/>
<meta content="115109575169727" property="fb:app_id"/>
<meta content='IMDb "Top 1000"
(Sorted by IMDb Rating Descending) - IMDb' property="og:title"/>
<meta content="IMDb" property="og:site_name"/>
<meta content='IMDb "Top 1000"
(Sorted by IMDb Rating Descending) - IMDb' name="title"/>
<meta content="IMDb's advanced search allows you to run extremely powerful queries over all people and titles in the database. Find exactly what you're looking for!" name="description"/>
<meta content="IMDb's advanced search allows you to run extremely powerful queries over all people and titles in the database. Find exactly what you're looking for!" property="og:description"/>
<meta content="MVM6RNF52A1HASV8PQQJ" name="request_id"/>
<script>
(function (win) {
win.PLAID_LOAD_FONTS_FIRED = true;
if (typeof win.FontFace !== "undefined"
&& typeof win.Promise !== "undefined") {
if (win.ue) {
win.uet("bb", "LoadRoboto", { wb: 1 });
}
var allowableLoadTime = 1000;
var startTimeInt = +new Date();
var roboto = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3Rv.woff2)',
{ style:'normal', weight: 400 });
var robotoMedium = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvTWVk.woff2)',
{ style:'normal', weight: 500 });
var robotoBold = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvQm9sZA.woff2)',
{ style:'normal', weight: 600 });
var robotoLoaded = roboto.load();
var robotoMediumLoaded = robotoMedium.load();
var robotoBoldLoaded = robotoBold.load();
win.Promise.all([robotoLoaded, robotoMediumLoaded, robotoBoldLoaded]).then(function() {
var loadTimeInt = +new Date();
var robotoLoadedCount = 0;
if ((loadTimeInt - startTimeInt) <= allowableLoadTime) {
win.document.fonts.add(roboto);
win.document.fonts.add(robotoMedium);
win.document.fonts.add(robotoBold);
robotoLoadedCount++;
}
if (win.ue) {
win.ue.count("roboto-loaded", robotoLoadedCount);
win.uet("be", "LoadRoboto", { wb: 1 });
win.uex("ld", "LoadRoboto", { wb: 1 });
}
}).catch(function() {
if (win.ue) {
win.ue.count("roboto-loaded", 0);
}
});
} else {
if (win.ue) {
win.ue.count("roboto-load-not-attempted", 1);
}
}
})(window);
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadCSS", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);
</script>
<link href="https://m.media-amazon.com/images/I/41JWELoXGtL.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/I/41pzfEC8F8L.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/r6TDeHVtyCUngwC.css" rel="stylesheet" type="text/css"/>
<!-- h=ics-c52xl-9-1e-bddb40d7.us-east-1 -->
<!--[if IE]><link rel="stylesheet" type="text/css" href="https://m.media-amazon.com/images/S/sash/pXHSPBTKPo0GIjW.css" /><![endif]-->
<link href="https://m.media-amazon.com/images/S/sash/U44wGn$B38GoCUr.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/q88Mgd6SPmx6R1F.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/dM0$HCaK4vPEd5s.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/MEsZk7KxG2g8825.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/sHfJ8wTsDnFAHcY.css" rel="stylesheet" type="text/css"/>
<noscript>
<link href="https://m.media-amazon.com/images/S/sash/CCc6Ja$8QUPPKkY.css" rel="stylesheet" type="text/css"/>
</noscript>
<script>
(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);
</script>
<script type="text/javascript">
// ensures js doesn't die if ads service fails.
// Note that we need to define the js here, since ad js is being rendered inline after this.
(function(f) {
// Fallback javascript, when the ad Service call fails.
if((window.csm == null || window.generic == null || window.consoleLog == null)) {
if (window.console && console.log) {
console.log("one or more of window.csm, window.generic or window.consoleLog has been stubbed...");
}
}
window.csm = window.csm || { measure:f, record:f, duration:f, listen:f, metrics:{} };
window.generic = window.generic || { monitoring: { start_timing: f, stop_timing: f } };
window.consoleLog = window.consoleLog || f;
})(function() {});
</script>
<script type="text/javascript">
if (!window.RadWidget) {
window.RadWidget = {
registerReactWidgetInstance: function(input) {
window.RadWidget[input.widgetName] = window.RadWidget[input.widgetName] || [];
window.RadWidget[input.widgetName].push({
id: input.instanceId,
props: JSON.stringify(input.model)
})
},
getReactWidgetInstances: function(widgetName) {
return window.RadWidget[widgetName] || []
}
};
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_head_delivery_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadJS", {wb: 1});
}
</script>
</head>
<body class="fixed" id="styleguide-v2">
<script>
if (typeof uet == 'function') {
uet("bb");
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_body_delivery_started');
}
</script>
<script>
if (typeof uet == 'function') {
uet("ns");
}
</script>
<style data-styled="gwOpQB iwkRT erYeKd bkeTFm diDBNJ eWjUDO LrpYY dzfmPm dFDExU RQLCk YOYgO ddqdtC hOXnzb cIKARP gTFTwO dKTgZt crQfrC OQYVG hjoCyi hoAGyu cECatH kaVyhF eIWOUD" data-styled-version="4.3.2">
/* sc-component-id: NavLogo-e02kni-0 */
.ddqdtC{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-left:0.25rem;margin-right:auto;-webkit-order:1;-ms-flex-order:1;order:1;position:relative;} @media screen and (min-width:1024px){.ddqdtC{margin-left:auto;margin-right:0.5rem;-webkit-order:0;-ms-flex-order:0;order:0;padding-left:0;}} @media (hover:hover) and (pointer:fine){.ddqdtC:focus{outline:1px dashed currentColor;}.ddqdtC:focus:active{outline:0;}.ddqdtC:before,.ddqdtC:after{border-radius:10%;bottom:0;content:'';height:100%;left:0;margin:auto;opacity:0;position:absolute;right:0;top:0;-webkit-transition:opacity .2s cubic-bezier(1,1,1,1);transition:opacity .2s cubic-bezier(1,1,1,1);width:100%;}}
/* sc-component-id: SearchTypeahead-sc-112a48v-0 */
.OQYVG li:first-child > ._3CzPBqlWRmSAoWxtvQQ5Eo{border-top:none;}
/* sc-component-id: FlyoutMenu-xq6xx0-0 */
.crQfrC{position:relative;} .crQfrC.navbar__flyout__text-button-after-mobile,.crQfrC .navbar__flyout__text-button-after-mobile{display:none;} .crQfrC .navbar__flyout__text-button-after-mobile > div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} .crQfrC .navbar__flyout--menu{top:100%;position:absolute;margin-top:.25rem;} .crQfrC.crQfrC.navbar__flyout--positionLeft .navbar__flyout--menu{left:0;right:auto;} @media screen and (min-width:600px){.crQfrC.navbar__flyout--breakpoint-m .navbar__flyout__icon-on-mobile{display:none;}.crQfrC.navbar__flyout--breakpoint-m .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} @media screen and (min-width:1024px){.crQfrC.navbar__flyout--breakpoint-l .navbar__flyout__icon-on-mobile{display:none;}.crQfrC.navbar__flyout--breakpoint-l .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} @media screen and (min-width:1280px){.crQfrC.navbar__flyout--breakpoint-xl .navbar__flyout__icon-on-mobile{display:none;}.crQfrC.navbar__flyout--breakpoint-xl .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} .crQfrC .navbar__flyout__button-pointer{-webkit-transition:-webkit-transform 0.2s;-webkit-transition:transform 0.2s;transition:transform 0.2s;-webkit-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);} .crQfrC.navbar__flyout--isVisible .navbar__flyout__button-pointer{-webkit-transform:rotateX(180deg);-ms-transform:rotateX(180deg);transform:rotateX(180deg);}
/* sc-component-id: SearchCategorySelector__StyledContainer-sc-18f40f7-0 */
.dKTgZt .search-category-selector__opener{border-radius:2px 0 0 2px;padding:0 0 0 0.5rem;min-height:32px;height:20px;border-right:1px solid rgba(0,0,0,0.3);} .dKTgZt _1L5qcXA4wOKR8LeHJgsqja{cursor:pointer;}
/* sc-component-id: SearchForm-dxsip9-0 */
.gTFTwO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0;padding:0;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} @media screen and (min-width:600px){.gTFTwO{-webkit-transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;}} .gTFTwO .nav-search__search-input-container{width:100%;padding-right:3.5rem;} .gTFTwO ._1-XI3_I8iwubPnQ1mmvW97{position:absolute;right:.35rem;min-width:2rem;cursor:pointer;top:.35rem;-webkit-transition:all 0.2s;transition:all 0.2s;} @media screen and (min-width:600px){.gTFTwO.q2gp5sSzXI30d2n_razRe ._1-XI3_I8iwubPnQ1mmvW97{background:transparent;opacity:1;}} .gTFTwO .imdb-header-search__input{background:transparent;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;outline:none;padding:1rem 1rem 1rem .75rem;width:100%;} @media screen and (min-width:600px){.gTFTwO .imdb-header-search__input{padding:.375em 0 .375rem .5rem;}} .gTFTwO .imdb-header-search__input::-ms-clear{display:none;}
/* sc-component-id: SearchBar-sc-1nweg6x-0 */
.hOXnzb{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;margin:0;min-height:3.5rem;opacity:0;-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:none;transition:none;-webkit-order:3;-ms-flex-order:3;order:3;pointer-events:none;position:absolute;top:0;visibility:hidden;width:100%;z-index:1;} .hOXnzb .imdb-header-search__state-closer{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:-webkit-transform 0.2s 0.1s;-webkit-transition:transform 0.2s 0.1s;transition:transform 0.2s 0.1s;display:inline;margin:.25rem;position:absolute;right:0;top:0;} .hOXnzb .imdb-header-search__state,.hOXnzb .imdb-header-search__input,.hOXnzb .nav-search__search-submit{-moz-appearance:none;-webkit-appearance:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;} @media screen and (min-width:600px){.hOXnzb{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0 0.5rem;padding:0;min-height:2.25rem;-webkit-order:3;-ms-flex-order:3;order:3;opacity:1;visibility:visible;pointer-events:auto;position:relative;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}.hOXnzb .imdb-header-search__state,.hOXnzb .nav-search__search-submit{padding:0;}.hOXnzb .nav-search__search-submit:focus{outline:var(--ipt-focus-outline-on-base);outline-offset:1px;}.hOXnzb .imdb-header-search__state-closer{display:none;}}
/* sc-component-id: SearchBar__SearchLauncherButton-sc-1nweg6x-1 */
.hjoCyi{-webkit-transition:all 0.3s;transition:all 0.3s;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-order:3;-ms-flex-order:3;order:3;} @media screen and (min-width:600px){.hjoCyi{-webkit-order:3;-ms-flex-order:3;order:3;}.hjoCyi.imdb-header-search__state-opener{display:none;}}
/* sc-component-id: SearchBar__MobileSearchStateToggle-sc-1nweg6x-2 */
.cIKARP:checked ~ .nav-search__search-container{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transition:opacity 0.2s,-webkit-transform 0.2s;-webkit-transition:opacity 0.2s,transform 0.2s;transition:opacity 0.2s,transform 0.2s;visibility:visible;pointer-events:auto;z-index:100;} .cIKARP:checked ~ .nav-search__search-container .nav-search__search-select,.cIKARP:checked ~ .nav-search__search-container .nav-search__search-submit{display:none;} .cIKARP:checked ~ .nav-search__search-container .imdb-header-search__state-closer{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);} .cIKARP:checked ~ .nav-search__search-container ~ .SearchBar__SearchLauncherButton-sc-1nweg6x-1{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:all 0.3s 0.3s;transition:all 0.3s 0.3s;opacity:0;}
/* sc-component-id: Drawer__StyledContainer-sc-1h7cs9y-0 */
.bkeTFm._14--k36qjjvLW3hUWHDPb_{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;overflow:hidden;-webkit-perspective:70vh;-moz-perspective:70vh;-ms-perspective:70vh;perspective:70vh;pointer-events:none;position:fixed;right:0;top:0;visibility:hidden;z-index:100;} .bkeTFm .iRO9SK-8q3D8_287dhn28{box-shadow:none;box-sizing:border-box;height:100%;overflow-x:hidden;overflow-y:auto;position:relative;-webkit-transform:translateX(calc(-100% - 36px));-ms-transform:translateX(calc(-100% - 36px));transform:translateX(calc(-100% - 36px));-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center;-webkit-transition:all 0.3s,box-shadow 0s;transition:all 0.3s,box-shadow 0s;width:280px;z-index:2;-webkit-overflow-scroll:touch;} .bkeTFm ._1iCYg55DI6ds7d3KVrdYBX{box-sizing:border-box;display:block;height:100%;left:0;opacity:0;position:absolute;top:0;-webkit-transition:opacity 0.3s;transition:opacity 0.3s;visibility:hidden;width:100%;will-change:opacity;z-index:1;} .bkeTFm ._3rHHDKyPLOjL8tGKHWMRza{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;min-height:3.5rem;margin-bottom:0.5rem;padding:0.25rem;} .bkeTFm ._2RzUkzyrsjx_BPIQ5uoj5s{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;} ._146x-LuQBSfM9yosRvjSGF:checked ~ .bkeTFm._14--k36qjjvLW3hUWHDPb_{pointer-events:auto;visibility:visible;} ._146x-LuQBSfM9yosRvjSGF:checked ~ .bkeTFm._14--k36qjjvLW3hUWHDPb_ > .iRO9SK-8q3D8_287dhn28{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);box-shadow:0px 11px 15px -7px rgba(var(--ipt-baseAlt-rgb),0.2),0px 24px 38px 3px rgba(var(--ipt-baseAlt-rgb),0.14),0px 9px 46px 8px rgba(var(--ipt-baseAlt-rgb),0.12);} ._146x-LuQBSfM9yosRvjSGF:checked ~ .bkeTFm._14--k36qjjvLW3hUWHDPb_ > ._1iCYg55DI6ds7d3KVrdYBX{opacity:0.5;visibility:visible;} @media screen and (min-width:1024px){.bkeTFm .iRO9SK-8q3D8_287dhn28{width:100%;-webkit-transform:translateY(calc(-100%));-ms-transform:translateY(calc(-100%));transform:translateY(calc(-100%));padding:2rem 0;}.bkeTFm ._3rHHDKyPLOjL8tGKHWMRza{background:none;max-width:1024px;margin:auto;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:0 1rem;}.bkeTFm ._3bRJYEaOz1BKUQYqW6yb29{max-width:1024px;margin:auto;}.bkeTFm .WNY8DBPCS1ZbiSd7NoqdP{display:inline;}}
/* sc-component-id: NavLink-sc-19k0khm-0 */
.LrpYY .ipc-icon{opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;} .LrpYY:hover .ipc-icon{opacity:1;} @media screen and (max-width:479px){.LrpYY.nav-link--hideXS{display:none;}} @media screen and (min-width:480px) and (max-width:599px){.LrpYY.nav-link--hideS{display:none;}} @media screen and (min-width:600px) and (max-width:1023px){.LrpYY.nav-link--hideM{display:none;}} @media screen and (min-width:1024px) and (max-width:1279px){.LrpYY.nav-link--hideL{display:none;}} @media screen and (min-width:1280px){.LrpYY.nav-link--hideXL{display:none;}}
/* sc-component-id: NavLinkCategory__StyledContainer-sc-1zvm8t-0 */
.eWjUDO ._2vjThdvAXrHx6CofJjm03w{cursor:pointer;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-top:1px solid transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:3rem;margin:0;padding:0 1rem;-webkit-transition:color 0.1s ease-in,border-color 0.1s ease-in,opacity 0.12s ease-in;transition:color 0.1s ease-in,border-color 0.1s ease-in,opacity 0.12s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;} .eWjUDO ._2vjThdvAXrHx6CofJjm03w:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;} .eWjUDO ._1tLXJMH37mh4UmvfVF8swF{padding-right:0.75rem;} .eWjUDO ._2aunAih-uMfbdgTUIjnQMd{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;overflow:hidden;padding-right:0.75rem;text-overflow:ellipsis;white-space:nowrap;} .eWjUDO ._2BeDp2pKthfMnxArm4lS0T{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);} .eWjUDO ._1tLXJMH37mh4UmvfVF8swF,.eWjUDO ._2BeDp2pKthfMnxArm4lS0T{opacity:0.5;-webkit-transition:all 0.2s;transition:all 0.2s;} .eWjUDO ._2vjThdvAXrHx6CofJjm03w:focus ._2BeDp2pKthfMnxArm4lS0T,.eWjUDO ._2vjThdvAXrHx6CofJjm03w:hover ._2BeDp2pKthfMnxArm4lS0T,.eWjUDO ._2vjThdvAXrHx6CofJjm03w:focus ._1tLXJMH37mh4UmvfVF8swF,.eWjUDO ._2vjThdvAXrHx6CofJjm03w:hover ._1tLXJMH37mh4UmvfVF8swF{opacity:1;} .eWjUDO ._1S9IOoNAVMPB2VikET3Lr2{overflow:hidden;border-bottom:1px solid transparent;-webkit-transition:border-color 0.1s ease-in,height 0.2s;transition:border-color 0.1s ease-in,height 0.2s;} .eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ span ._2vjThdvAXrHx6CofJjm03w ._1tLXJMH37mh4UmvfVF8swF{opacity:1;} .eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ span ._2vjThdvAXrHx6CofJjm03w ._2BeDp2pKthfMnxArm4lS0T{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);} .eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ span ._1S9IOoNAVMPB2VikET3Lr2{display:block;} .eWjUDO:nth-of-type(1) ._2vjThdvAXrHx6CofJjm03w{border-top:none;} @media screen and (min-width:1024px){.eWjUDO.noMarginItem ._2vjThdvAXrHx6CofJjm03w{margin-top:0;}} @media screen and (min-width:1024px){.eWjUDO{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;}.eWjUDO ._2vjThdvAXrHx6CofJjm03w{pointer-events:none;margin-top:1.5rem;height:3rem;border:none;}.eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ ._2Q0QZxgQqVpU0nQBqv1xlY ._2vjThdvAXrHx6CofJjm03w ._2aunAih-uMfbdgTUIjnQMd{color:inherit;}.eWjUDO ._1S9IOoNAVMPB2VikET3Lr2{visibility:inherit;height:auto !important;border:0;}.eWjUDO ._2BeDp2pKthfMnxArm4lS0T{display:none;}.eWjUDO ._1tLXJMH37mh4UmvfVF8swF{color:var(--ipt-on-baseAlt-accent1-color);opacity:1;}.eWjUDO .ipc-list__item{height:2rem;}.eWjUDO .ipc-list--baseAlt .ipc-list__item:hover{background:none;-webkit-text-decoration:underline;text-decoration:underline;}} @media screen and (max-width:479px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideXS{display:none;}} @media screen and (min-width:480px) and (max-width:599px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideS{display:none;}} @media screen and (min-width:600px) and (max-width:1023px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideM{display:none;}} @media screen and (min-width:1024px) and (max-width:1279px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideL{display:none;}} @media screen and (min-width:1280px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideXL{display:none;}}
/* sc-component-id: NavDynamicCategoryList__CategoryGroupContainer-f186ms-0 */
@media screen and (min-width:1024px){.dzfmPm{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;}}
/* sc-component-id: NavDynamicCategoryList__EmptyContainer-f186ms-1 */
@media screen and (min-width:1024px){.dFDExU{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;}}
/* sc-component-id: NavLinkCategoryList__StyledContainer-sc-13vymju-0 */
.diDBNJ ._1cBEhLbHn9YeCkfPvo9USU{list-style:none;margin:0.5rem 0;opacity:0.2;} .diDBNJ ._3xW8qYlqcCPv5fOHeXBer5{margin-bottom:3rem;margin-top:1.5rem;padding:1rem;height:auto;} @media screen and (min-width:1024px){.diDBNJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.diDBNJ ._1BC0pBnjYqz3wST1u3CwmG{display:none;}.diDBNJ ._3xW8qYlqcCPv5fOHeXBer5{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;display:none;}.diDBNJ:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;}}
/* sc-component-id: NavLinkCategoryList__LogoNavLink-sc-13vymju-1 */
.RQLCk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}
/* sc-component-id: NavLinkCategoryList__TextNavLink-sc-13vymju-2 */
.YOYgO{margin-top:.25rem;}
/* sc-component-id: HamburgerMenu-k5mvoq-0 */
.erYeKd{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-order:0;-ms-flex-order:0;order:0;} .erYeKd.desktop{display:none;} @media screen and (min-width:1024px){.erYeKd{-webkit-order:1;-ms-flex-order:1;order:1;}.erYeKd.mobile{display:none;}.erYeKd.desktop{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}
/* sc-component-id: UserMenu-sc-1poz515-0 */
.eIWOUD{-webkit-order:6;-ms-flex-order:6;order:6;} @media screen and (min-width:600px){.eIWOUD .navbar__user-menu__username-divider,.eIWOUD .navbar__user-menu__username{display:none;}} @media screen and (min-width:1024px){.eIWOUD{-webkit-order:7;-ms-flex-order:7;order:7;}} .eIWOUD .navbar__user-menu-toggle__button{padding-right:0.25rem;} .eIWOUD .navbar__user-name{max-width:160px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
/* sc-component-id: NavWatchlistButton-sc-1b65w5j-0 */
.kaVyhF{-webkit-order:5;-ms-flex-order:5;order:5;display:none;} @media screen and (min-width:1024px){.kaVyhF{-webkit-order:6;-ms-flex-order:6;order:6;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} .kaVyhF .imdb-header__watchlist-button-count{margin-left:0.5rem;background:var(--ipt-on-base-accent1-color);color:var(--ipt-on-accent1-color);padding:0 0.4rem;border-radius:10px;text-align:center;} .kaVyhF .ipc-button__text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}
/* sc-component-id: NavProFlyout-sc-1cjctnc-0 */
.hoAGyu{-webkit-order:4;-ms-flex-order:4;order:4;} @media screen and (min-width:1024px){.hoAGyu{-webkit-order:4;-ms-flex-order:4;order:4;}} .hoAGyu .navbar__imdbpro-menu-toggle__name{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;} .hoAGyu .navbar__imdbpro-content .navbar__flyout--menu{background-image:url(//m.media-amazon.com/images/G/01/imdb/images/navbar/imdbpro_navbar_menu_bg-3083451252._V_.png);background-size:cover;padding-left:17px;padding-bottom:25px;padding-top:25px;color:white;font-weight:bold;} .hoAGyu .navbar__imdbpro-imdb-pro-ad{background-repeat:no-repeat;color:white;cursor:pointer;width:573px;overflow:hidden;border-radius:8px;left:initial;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{display:inline-block;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__title{color:white;line-height:1.3em;margin-bottom:10px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__line{cursor:inherit;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__link{display:inline-block;-webkit-text-decoration:none;text-decoration:none;vertical-align:middle;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{vertical-align:top;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content{font-family:'Arial';margin-left:15px;width:400px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__line{display:list-item;font-size:12px;list-style-position:inside;list-style-type:disc;margin:0px;padding:.1rem 0;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__title{font-size:15px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button{margin-top:15px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text{fill:#111111;font-size:13px;font-weight:normal;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button svg:hover rect,.hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text:hover rect{fill:#f7dd95;} .hoAGyu .navbar__imdbpro-content .sub_nav{background-color:#f2f2f2;border-bottom-left-radius:10px;border-bottom-right-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,0.6);color:#999;height:325px;} .hoAGyu .navbar__imdbpro-content .sub_nav h5{color:#A58500;margin:20px 0 10px;position:relative;}
/* sc-component-id: LegacyLoginNode-sc-1oajtws-0 */
.iwkRT{display:none;}
/* sc-component-id: Root__Header-sc-7p0yen-0 */
.gwOpQB{padding:0.25rem;margin:0;position:relative;z-index:1000;min-height:3.5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;} .gwOpQB a{color:inherit;} .gwOpQB .navbar__inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:100vw;margin:0;} @media screen and (min-width:600px){.gwOpQB .navbar__inner{padding:0 .75rem;}} @media screen and (min-width:1024px){.gwOpQB .navbar__inner{width:100%;margin:0 auto;}} .gwOpQB label{margin-bottom:0;}
/* sc-component-id: Root__Separator-sc-7p0yen-1 */
.cECatH{border:1px solid rgba(var(--ipt-on-baseAlt-rgb),.16);-webkit-order:5;-ms-flex-order:5;order:5;width:1px;height:2rem;margin:0 .5rem;} @media screen and (max-width:600px){.cECatH{display:none;-webkit-order:7;-ms-flex-order:7;order:7;}}
</style>
<div id="beee0dd7-1f16-4fae-bdca-5a5379f37b83">
<nav class="FHCtKBINjbqzCITNiccU0 imdb-header imdb-header--react Root__Header-sc-7p0yen-0 gwOpQB" id="imdbHeader">
<div class="imdb-header__login-state-node" id="nblogin">
</div>
<div class="ipc-page-content-container ipc-page-content-container--center navbar__inner" role="presentation">
<label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-icon-button jOOJQ0waXoTX6ZSthGtum HamburgerMenu-k5mvoq-0 erYeKd mobile ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen" role="button" tabindex="0" title="Open Navigation Drawer">
<svg class="ipc-icon ipc-icon--menu" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z">
</path>
</svg>
</label>
<label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button jOOJQ0waXoTX6ZSthGtum HamburgerMenu-k5mvoq-0 erYeKd desktop" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen--desktop" role="button" tabindex="0">
<svg class="ipc-icon ipc-icon--menu ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z">
</path>
</svg>
<div class="ipc-button__text">
Menu
</div>
</label>
<input aria-hidden="true" class="_146x-LuQBSfM9yosRvjSGF" hidden="" id="imdbHeader-navDrawer" name="imdbHeader-navDrawer" type="checkbox"/>
<aside class="_14--k36qjjvLW3hUWHDPb_ _32i38MKalFVUkNAqPm88ln imdb-header__nav-drawer Drawer__StyledContainer-sc-1h7cs9y-0 bkeTFm" data-testid="drawer" role="presentation">
<div aria-hidden="true" class="iRO9SK-8q3D8_287dhn28" data-testid="panel" role="presentation">
<div class="_3rHHDKyPLOjL8tGKHWMRza" data-testid="panel-header" role="presentation">
<a href="/?ref_=nv_home">
<svg class="ipc-logo WNY8DBPCS1ZbiSd7NoqdP" height="56" version="1.1" viewbox="0 0 64 32" width="98" xmlns="http://www.w3.org/2000/svg">
<g fill="#F5C518">
<rect height="100%" rx="4" width="100%" x="0" y="0">
</rect>
</g>
<g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)">
<polygon points="0 18 5 18 5 0 0 0">
</polygon>
<path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z">
</path>
<path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z">
</path>
<path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z">
</path>
</g>
</svg>
</a>
<label aria-disabled="false" aria-label="Close Navigation Drawer" class="ipc-icon-button _2RzUkzyrsjx_BPIQ5uoj5s ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" role="button" tabindex="0" title="Close Navigation Drawer">
<svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z">
</path>
</svg>
</label>
</div>
<div class="_3bRJYEaOz1BKUQYqW6yb29" data-testid="panel-content" role="presentation">
<div class="_3wpok4xkiX-9E61ruFL_RA NavLinkCategoryList__StyledContainer-sc-13vymju-0 diDBNJ" role="presentation">
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="mov" hidden="" id="nav-link-categories-mov" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Movies Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-mov" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--movie" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Movies
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/calendar/?ref_=nv_mv_cal" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Release Calendar
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/list/ls016522954/?ref_=nv_tvv_dvd" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
DVD & Blu-ray Releases
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/top/?ref_=nv_mv_250" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Top Rated Movies
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/moviemeter/?ref_=nv_mv_mpm" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Movies
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/feature/genre/?ref_=nv_ch_gr" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Browse Movies by Genre
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/boxoffice/?ref_=nv_ch_cht" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Top Box Office
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/showtimes/?ref_=nv_mv_sh" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Showtimes & Tickets
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/movies-in-theaters/?ref_=nv_mv_inth" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
In Theaters
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/coming-soon/?ref_=nv_mv_cs" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Coming Soon
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/news/movie/?ref_=nv_nw_mv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Movie News
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/india/toprated/?ref_=nv_mv_in" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
India Movie Spotlight
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="NavDynamicCategoryList__CategoryGroupContainer-f186ms-0 dzfmPm" data-testid="grouped-link-category">
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="tvshows" hidden="" id="nav-link-categories-tvshows" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand TV Shows Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-tvshows" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--television" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
TV Shows
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/whats-on-tv/?ref_=nv_tv_ontv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
What's on TV & Streaming
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/toptv/?ref_=nv_tvv_250" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Top Rated Shows
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/tvmeter/?ref_=nv_tvv_mptv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Shows
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/feature/genre/" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Browse TV Shows by Genre
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/news/tv/?ref_=nv_nw_tv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
TV News
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/india/tv?ref_=nv_tv_in" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
India TV Spotlight
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="video" hidden="" id="nav-link-categories-video" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Watch Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-video" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--video-library" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l5.47 4.1c.27.2.27.6 0 .8L12 14.5z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Watch
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/what-to-watch/?ref_=nv_watch" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
What to Watch
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/trailers/?ref_=nv_mv_tr" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Latest Trailers
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/originals/?ref_=nv_sf_ori" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
IMDb Originals
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/imdbpicks/?ref_=nv_pi" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
IMDb Picks
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/podcasts/?ref_=nv_pod" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
IMDb Podcasts
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="awards" hidden="" id="nav-link-categories-awards" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Awards & Events Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-awards" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--star-circle-filled" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.23 15.39L12 15.45l-3.22 1.94a.502.502 0 0 1-.75-.54l.85-3.66-2.83-2.45a.505.505 0 0 1 .29-.88l3.74-.32 1.46-3.45c.17-.41.75-.41.92 0l1.46 3.44 3.74.32a.5.5 0 0 1 .28.88l-2.83 2.45.85 3.67c.1.43-.36.77-.74.54z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Awards & Events
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/oscars/?ref_=nv_ev_acd" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Oscars
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://m.imdb.com/feature/bestpicture/?ref_=nv_ch_osc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Best Picture Winners
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/search/title/?count=100&groups=oscar_best_picture_winners&sort=year%2Cdesc&ref_=nv_ch_osc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Best Picture Winners
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/golden-globes/?ref_=nv_ev_gg" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Golden Globes
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/emmys/?ref_=nv_ev_rte" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Emmys
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/starmeterawards/?ref_=nv_ev_sma" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
STARmeter Awards
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/comic-con/?ref_=nv_ev_comic" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
San Diego Comic-Con
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/nycc/?ref_=nv_ev_nycc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
New York Comic-Con
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/sundance/?ref_=nv_ev_sun" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Sundance Film Festival
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/toronto/?ref_=nv_ev_tor" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Toronto Int'l Film Festival
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/awards-central/?ref_=nv_ev_awrd" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Awards Central
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/festival-central/?ref_=nv_ev_fc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Festival Central
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/event/all/?ref_=nv_ev_all" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
All Events
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji noMarginItem NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="celebs" hidden="" id="nav-link-categories-celebs" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Celebs Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-celebs" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--people" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Celebs
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/feature/bornondate/?ref_=nv_cel_brn" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Born Today
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://m.imdb.com/chart/starmeter/?ref_=nv_cel_brn" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Celebs
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/search/name/?match_all=true&ref_=nv_cel_m" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Celebs
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/news/celebrity/?ref_=nv_cel_nw" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Celebrity News
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="NavDynamicCategoryList__EmptyContainer-f186ms-1 dFDExU" data-testid="nav-link-category">
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji noMarginItem NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="comm" hidden="" id="nav-link-categories-comm" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Community Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-comm" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--earth" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Community
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://help.imdb.com/imdb?ref_=cons_nb_hlp" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Help Center
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://contribute.imdb.com/czone?ref_=nv_cm_cz" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Contributor Zone
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/poll/?ref_=nv_cm_pl" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Polls
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-list__item nav-link _3xW8qYlqcCPv5fOHeXBer5 NavLink-sc-19k0khm-0 LrpYY" href="https://pro.imdb.com?ref_=cons_nb_hm&rf=cons_nb_hm" role="menuitem" tabindex="0" target="_blank">
<span class="ipc-list-item__text" role="presentation">
<div class="_33PK8nBHiT1fGjnfXwum3v NavLinkCategoryList__LogoNavLink-sc-13vymju-1 RQLCk">
<svg class="ipc-logo" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg">
<g fill="currentColor">
<rect height="12.34" width="3.21" x="0" y="1">
</rect>
<path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z">
</path>
<path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z">
</path>
<path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z">
</path>
<path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z">
</path>
<path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z">
</path>
<path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z">
</path>
</g>
</svg>
<div class="NavLinkCategoryList__TextNavLink-sc-13vymju-2 YOYgO">
For Industry Professionals
</div>
</div>
</span>
<span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation">
<svg class="ipc-icon ipc-icon--launch" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M16 16.667H8A.669.669 0 0 1 7.333 16V8c0-.367.3-.667.667-.667h3.333c.367 0 .667-.3.667-.666C12 6.3 11.7 6 11.333 6h-4C6.593 6 6 6.6 6 7.333v9.334C6 17.4 6.6 18 7.333 18h9.334C17.4 18 18 17.4 18 16.667v-4c0-.367-.3-.667-.667-.667-.366 0-.666.3-.666.667V16c0 .367-.3.667-.667.667zm-2.667-10c0 .366.3.666.667.666h1.727L9.64 13.42a.664.664 0 1 0 .94.94l6.087-6.087V10c0 .367.3.667.666.667.367 0 .667-.3.667-.667V6h-4c-.367 0-.667.3-.667.667z">
</path>
</svg>
</span>
</a>
</div>
</div>
</div>
<label aria-hidden="true" aria-label="Close Navigation Drawer" class="_1iCYg55DI6ds7d3KVrdYBX" data-testid="backdrop" for="imdbHeader-navDrawer" role="button" tabindex="0">
</label>
</aside>
<a aria-label="Home" class="NavLogo-e02kni-0 ddqdtC imdb-header__logo-link _3XaDsUnZG7ZfFqFF37dZPv" href="/?ref_=nv_home" id="home_img_holder">
<svg class="ipc-logo" height="32" id="home_img" version="1.1" viewbox="0 0 64 32" width="64" xmlns="http://www.w3.org/2000/svg">
<g fill="#F5C518">
<rect height="100%" rx="4" width="100%" x="0" y="0">
</rect>
</g>
<g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)">
<polygon points="0 18 5 18 5 0 0 0">
</polygon>
<path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z">
</path>
<path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z">
</path>
<path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z">
</path>
</g>
</svg>
</a>
<input aria-hidden="true" class="imdb-header-search__state EL4bTiUhQdfIvyX_PMRVv SearchBar__MobileSearchStateToggle-sc-1nweg6x-2 cIKARP" hidden="" id="navSearch-searchState" name="navSearch-searchState" type="checkbox"/>
<div class="nav-search__search-container _2cVsg1cgtNxl8NEGDHTPH6 SearchBar-sc-1nweg6x-0 hOXnzb" id="suggestion-search-container">
<form action="/find" class="_19kygDgP4Og4wL_TIXtDmm imdb-header__search-form SearchForm-dxsip9-0 gTFTwO" id="nav-search-form" method="get" name="nav-search-form" role="search">
<div class="search-category-selector SearchCategorySelector__StyledContainer-sc-18f40f7-0 dKTgZt">
<div class="FlyoutMenu-xq6xx0-0 crQfrC navbar__flyout--breakpoint-m navbar__flyout--positionLeft">
<label aria-disabled="false" aria-label="All" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-base ipc-button--theme-base ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile search-category-selector__opener P7UFTypc7bsdHDd2RHdil nav-search-form__categories" for="navbar-search-category-select" role="button" tabindex="0">
<div class="ipc-button__text">
All
<svg class="ipc-icon ipc-icon--arrow-drop-down navbar__flyout__button-pointer" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z">
</path>
</svg>
</div>
</label>
<input aria-hidden="true" class="ipc-menu__focused-state" hidden="" id="navbar-search-category-select" name="navbar-search-category-select" tabindex="-1" type="checkbox"/>
<div class="ipc-menu mdc-menu ipc-menu--not-initialized ipc-menu--on-baseAlt ipc-menu--anchored ipc-menu--with-checkbox ipc-menu--expand-from-top-left navbar__flyout--menu" data-menu-id="navbar-search-category-select" role="presentation">
<div class="ipc-menu__items mdc-menu__items" role="presentation">
<span id="navbar-search-category-select-contents">
<ul aria-orientation="vertical" class="ipc-list _2crW0ewf49BFHCKEEUJ_9o ipc-list--baseAlt" role="menu">
<a aria-disabled="false" aria-label="All" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja _3lrXaniHRqyCb5hUFHbcds" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--search _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
</path>
</svg>
All
</span>
</a>
<a aria-disabled="false" aria-label="Titles" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--movie _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z">
</path>
</svg>
Titles
</span>
</a>
<a aria-disabled="false" aria-label="TV Episodes" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--television _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z">
</path>
</svg>
TV Episodes
</span>
</a>
<a aria-disabled="false" aria-label="Celebs" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--people _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z">
</path>
</svg>
Celebs
</span>
</a>
<a aria-disabled="false" aria-label="Companies" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--business _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z">
</path>
</svg>
Companies
</span>
</a>
<a aria-disabled="false" aria-label="Keywords" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--label _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58a.99.99 0 0 0 0-1.16l-3.96-5.58z">
</path>
</svg>
Keywords
</span>
</a>
<li class="ipc-list-divider" role="separator">
</li>
<a aria-disabled="false" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" href="https://www.imdb.com/search/" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--find-in-page _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M20 19.59V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31a5.013 5.013 0 0 1 5.83-5.61c1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z">
</path>
</svg>
Advanced Search
</span>
<span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</a>
</ul>
</span>
</div>
</div>
</div>
</div>
<div class="nav-search__search-input-container SearchTypeahead-sc-112a48v-0 OQYVG">
<div aria-expanded="false" aria-haspopup="listbox" aria-owns="react-autowhatever-1" class="react-autosuggest__container" role="combobox">
<input aria-autocomplete="list" aria-controls="react-autowhatever-1" aria-label="Search IMDb" autocapitalize="off" autocomplete="off" autocorrect="off" class="imdb-header-search__input _3gDVKsXm3b_VAMhhSw1haV react-autosuggest__input" id="suggestion-search" name="q" placeholder="Search IMDb" type="text" value=""/>
</div>
</div>
<button aria-label="Submit Search" class="nav-search__search-submit _1-XI3_I8iwubPnQ1mmvW97" id="suggestion-search-button" type="submit">
<svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
</path>
</svg>
</button>
<input name="ref_" type="hidden" value="nv_sr_sm"/>
</form>
<label aria-disabled="false" aria-label="Close Search" class="ipc-icon-button imdb-header-search__state-closer ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchClose" role="button" tabindex="0" title="Close Search">
<svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z">
</path>
</svg>
</label>
</div>
<label aria-disabled="false" aria-label="Open Search" class="ipc-icon-button imdb-header-search__state-opener SearchBar__SearchLauncherButton-sc-1nweg6x-1 hjoCyi ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchOpen" role="button" tabindex="0" title="Open Search">
<svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
</path>
</svg>
</label>
<div class="navbar__imdbpro NavProFlyout-sc-1cjctnc-0 hoAGyu">
<div class="navbar__imdbpro-content FlyoutMenu-xq6xx0-0 crQfrC navbar__flyout--breakpoint-l">
<a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile navbar__imdb-pro--toggle" href="https://pro.imdb.com/login/ap?u=/login/lwa&imdbPageAction=signUp&rf=cons_nb_hm&ref_=cons_nb_hm" role="button" tabindex="0">
<div class="ipc-button__text">
<svg class="ipc-logo navbar__imdbpro-menu-toggle__name" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg">
<g fill="currentColor">
<rect height="12.34" width="3.21" x="0" y="1">
</rect>
<path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z">
</path>
<path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z">
</path>
<path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z">
</path>
<path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z">
</path>
<path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z">
</path>
<path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z">
</path>
</g>
</svg>
</div>
</a>
</div>
</div>
<div class="Root__Separator-sc-7p0yen-1 cECatH">
</div>
<div class="NavWatchlistButton-sc-1b65w5j-0 kaVyhF imdb-header__watchlist-button">
<a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button" href="/list/watchlist?ref_=nv_usr_wl_all_0" role="button" tabindex="0">
<svg class="ipc-icon ipc-icon--watchlist ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M17 3c1.05 0 1.918.82 1.994 1.851L19 5v16l-7-3-7 3V5c0-1.05.82-1.918 1.851-1.994L7 3h10zm-4 4h-2v3H8v2h3v3h2v-3h3v-2h-3V7z" fill="currentColor">
</path>
</svg>
<div class="ipc-button__text">
Watchlist
</div>
</a>
</div>
<div class="_3x17Igk9XRXcaKrcG3_MXQ navbar__user UserMenu-sc-1poz515-0 eIWOUD">
<a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button imdb-header__signin-text" href="/registration/signin?ref=nv_generic_lgin" role="button" tabindex="0">
<div class="ipc-button__text">
Sign In
</div>
</a>
</div>
</div>
</nav>
<svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
<lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
</defs>
</svg>
</div>
<script type="text/javascript">
if (!window.RadWidget) {
window.RadWidget = {
registerReactWidgetInstance: function(input) {
window.RadWidget[input.widgetName] = window.RadWidget[input.widgetName] || [];
window.RadWidget[input.widgetName].push({
id: input.instanceId,
props: JSON.stringify(input.model)
})
},
getReactWidgetInstances: function(widgetName) {
return window.RadWidget[widgetName] || []
}
};
}
</script>
<script type="text/javascript">
window['RadWidget'].registerReactWidgetInstance({
widgetName: "IMDbConsumerSiteNavFeatureV1",
instanceId: "beee0dd7-1f16-4fae-bdca-5a5379f37b83",
model: {"username":null,"isLoggedIn":false,"showIMDbTVLink":false,"weblabs":[]}
});
</script>
<script>
if (typeof uet == 'function') {
uet("ne");
}
</script>
<style>
.oscars-site-stripe {
background-color: #000;
overflow: hidden;
display: flex;
justify-content: center;
}
.oscars-site-stripe__img--sm {
height: 64px;
}
</style>
<div class="oscars-site-stripe">
</div>
<div id="wrapper">
<div class="redesign" id="root">
<div class="navbarSprite" id="nb20">
<div id="supertab">
<!-- no content received for slot: top_ad -->
<script>
if (window && window.mediaOrchestrator) {
window.mediaOrchestrator.publish('mediaPlaybackEvent', {
type: 'no-autoplay-video-ad-detected',
slotName: 'top_ad',
timestamp: Date.now()
});
}
</script>
</div>
<!-- no content received for slot: navstrip -->
<!-- no content received for slot: injected_navstrip -->
</div>
<div class="pagecontent" id="pagecontent">
<!-- no content received for slot: injected_billboard -->
<div class="redesign" id="content-2-wide">
<div id="main">
<div class="article">
<h1 class="header">
IMDb "Top 1000"
(Sorted by IMDb Rating Descending)
</h1>
<div class="nav">
<br class="clear"/>
<div class="display-mode float-right">
View Mode:
<a class="compact" href="/search/title/?groups=top_1000&sort=user_rating,desc&count=100&view=simple">
Compact
</a>
<span class="ghost">
|
</span>
<a class="detailed" href="/search/title/?groups=top_1000&sort=user_rating,desc&count=100&view=advanced">
<strong>
Detailed
</strong>
</a>
</div>
<div class="desc">
<span>
1-100 of 1,000 titles.
</span>
<span class="ghost">
|
</span>
<a class="lister-page-next next-page" href="/search/title/?groups=top_1000&sort=user_rating,desc&count=100&start=101">
Next »
</a>
</div>
</div>
<br class="clear"/>
<div class="sorting">
Sort by:
<a href="/search/title/?groups=top_1000">
Popularity
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=alpha,asc">
A-Z
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=user_rating,asc">
<strong>
User Rating
</strong>
▼
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=num_votes,asc">
Number of Votes
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=boxoffice_gross_us,asc">
US Box Office
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=runtime,asc">
Runtime
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=year,asc">
Year
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=release_date,asc">
Release Date
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=your_rating_date,asc">
Date of Your Rating
</a>
<span class="ghost">
|
</span>
<a href="/search/title/?groups=top_1000&sort=my_ratings,desc">
Your Rating
</a>
</div>
<br class="clear"/>
<div class="lister list detail sub-list">
<div class="lister-list">
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0111161">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0111161/">
<img alt="The Shawshank Redemption" class="loadlate" data-tconst="tt0111161" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMDFkYTc0MGEtZmNhMC00ZDIzLWFmNTEtODM1ZmRlYWMwMWFmXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
1.
</span>
<a href="/title/tt0111161/">
The Shawshank Redemption
</a>
<span class="lister-item-year text-muted unbold">
(1994)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
142 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="9.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
9.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0111161" id="urv_tt0111161">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0111161">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0111161|imdb|9.3|9.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 9.3/10 (2,451,030 votes) - click stars to rate">
<meta content="9.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="2451030" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 130.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
9.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0111161/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
80
</span>
Metascore
</div>
</div>
<p class="text-muted">
Two imprisoned men bond over a number of years, finding solace and eventual redemption through acts of common decency.
</p>
<p class="">
Director:
<a href="/name/nm0001104/">
Frank Darabont
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000209/">
Tim Robbins
</a>
,
<a href="/name/nm0000151/">
Morgan Freeman
</a>
,
<a href="/name/nm0348409/">
Bob Gunton
</a>
,
<a href="/name/nm0006669/">
William Sadler
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="2451030" name="nv">
2,451,030
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="28,341,469" name="nv">
$28.34M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0068646">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0068646/">
<img alt="The Godfather" class="loadlate" data-tconst="tt0068646" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BM2MyNjYxNmUtYTAwNi00MTYxLWJmNWYtYzZlODY3ZTk3OTFlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
2.
</span>
<a href="/title/tt0068646/">
The Godfather
</a>
<span class="lister-item-year text-muted unbold">
(1972)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
175 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="9.2" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
9.2
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0068646" id="urv_tt0068646">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0068646">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0068646|imdb|9.2|9.2|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 9.2/10 (1,696,489 votes) - click stars to rate">
<meta content="9.2" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1696489" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 128.8px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
9.2
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0068646/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
100
</span>
Metascore
</div>
</div>
<p class="text-muted">
An organized crime dynasty's aging patriarch transfers control of his clandestine empire to his reluctant son.
</p>
<p class="">
Director:
<a href="/name/nm0000338/">
Francis Ford Coppola
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000008/">
Marlon Brando
</a>
,
<a href="/name/nm0000199/">
Al Pacino
</a>
,
<a href="/name/nm0001001/">
James Caan
</a>
,
<a href="/name/nm0000473/">
Diane Keaton
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1696489" name="nv">
1,696,489
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="134,966,411" name="nv">
$134.97M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt10189514">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt10189514/">
<img alt="Soorarai Pottru" class="loadlate" data-tconst="tt10189514" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOGVjYmM0ZWEtNTFjNi00MWZjLTk3OTItMmFjMDAzZWU1ZDVjXkEyXkFqcGdeQXVyMTI2Mzk1ODg0._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
3.
</span>
<a href="/title/tt10189514/">
Soorarai Pottru
</a>
<span class="lister-item-year text-muted unbold">
(2020)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
153 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="9.1" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
9.1
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt10189514" id="urv_tt10189514">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt10189514">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt10189514|imdb|9.1|9.1|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 9.1/10 (88,844 votes) - click stars to rate">
<meta content="9.1" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="88844" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 127.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
9.1
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt10189514/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
Nedumaaran Rajangam "Maara" sets out to make the common man fly and in the process takes on the world's most capital intensive industry and several enemies who stand in his way.
</p>
<p class="">
Director:
<a href="/name/nm1464314/">
Sudha Kongara
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1421814/">
Suriya
</a>
,
<a href="/name/nm0712546/">
Paresh Rawal
</a>
,
<a href="/name/nm7936195/">
Aparna Balamurali
</a>
,
<a href="/name/nm0595934/">
Mohan Babu
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="88844" name="nv">
88,844
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0468569">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0468569/">
<img alt="The Dark Knight" class="loadlate" data-tconst="tt0468569" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
4.
</span>
<a href="/title/tt0468569/">
The Dark Knight
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
152 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
9.0
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0468569" id="urv_tt0468569">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0468569">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0468569|imdb|9|9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 9/10 (2,406,758 votes) - click stars to rate">
<meta content="9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="2406758" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 126px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0468569/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
84
</span>
Metascore
</div>
</div>
<p class="text-muted">
When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.
</p>
<p class="">
Director:
<a href="/name/nm0634240/">
Christopher Nolan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000288/">
Christian Bale
</a>
,
<a href="/name/nm0005132/">
Heath Ledger
</a>
,
<a href="/name/nm0001173/">
Aaron Eckhart
</a>
,
<a href="/name/nm0000323/">
Michael Caine
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="2406758" name="nv">
2,406,758
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="534,858,444" name="nv">
$534.86M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0071562">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0071562/">
<img alt="The Godfather: Part II" class="loadlate" data-tconst="tt0071562" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMWMwMGQzZTItY2JlNC00OWZiLWIyMDctNDk2ZDQ2YjRjMWQ0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
5.
</span>
<a href="/title/tt0071562/">
The Godfather: Part II
</a>
<span class="lister-item-year text-muted unbold">
(1974)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
202 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
9.0
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0071562" id="urv_tt0071562">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0071562">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0071562|imdb|9|9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 9/10 (1,178,350 votes) - click stars to rate">
<meta content="9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1178350" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 126px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0071562/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
90
</span>
Metascore
</div>
</div>
<p class="text-muted">
The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.
</p>
<p class="">
Director:
<a href="/name/nm0000338/">
Francis Ford Coppola
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000199/">
Al Pacino
</a>
,
<a href="/name/nm0000134/">
Robert De Niro
</a>
,
<a href="/name/nm0000380/">
Robert Duvall
</a>
,
<a href="/name/nm0000473/">
Diane Keaton
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1178350" name="nv">
1,178,350
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="57,300,000" name="nv">
$57.30M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0050083">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0050083/">
<img alt="12 Angry Men" class="loadlate" data-tconst="tt0050083" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMWU4N2FjNzYtNTVkNC00NzQ0LTg0MjAtYTJlMjFhNGUxZDFmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
6.
</span>
<a href="/title/tt0050083/">
12 Angry Men
</a>
<span class="lister-item-year text-muted unbold">
(1957)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
96 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
9.0
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0050083" id="urv_tt0050083">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0050083">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0050083|imdb|9|9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 9/10 (725,454 votes) - click stars to rate">
<meta content="9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="725454" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 126px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0050083/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
96
</span>
Metascore
</div>
</div>
<p class="text-muted">
A jury holdout attempts to prevent a miscarriage of justice by forcing his colleagues to reconsider the evidence.
</p>
<p class="">
Director:
<a href="/name/nm0001486/">
Sidney Lumet
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000020/">
Henry Fonda
</a>
,
<a href="/name/nm0002011/">
Lee J. Cobb
</a>
,
<a href="/name/nm0000842/">
Martin Balsam
</a>
,
<a href="/name/nm0275835/">
John Fiedler
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="725454" name="nv">
725,454
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="4,360,000" name="nv">
$4.36M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt10554232">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt10554232/">
<img alt="Dara iz Jasenovca" class="loadlate" data-tconst="tt10554232" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYjA2NWY5M2YtZTZiNi00Y2IxLTk0NzgtYjQxYjYxNjVkMjM1XkEyXkFqcGdeQXVyOTIxNTAyMzU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
7.
</span>
<a href="/title/tt10554232/">
Dara iz Jasenovca
</a>
<span class="lister-item-year text-muted unbold">
(2020)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
R
</span>
<span class="ghost">
|
</span>
<span class="runtime">
130 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.9
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt10554232" id="urv_tt10554232">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt10554232">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt10554232|imdb|8.9|8.9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.9/10 (78,924 votes) - click stars to rate">
<meta content="8.9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="78924" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 124.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt10554232/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
Follows the story of a young girl named Dara who is sent to a concentration camp in Croatia during World War 2.
</p>
<p class="">
Director:
<a href="/name/nm0031342/">
Predrag Antonijevic
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm10784809/">
Biljana Cekic
</a>
,
<a href="/name/nm3168810/">
Zlatan Vidovic
</a>
,
<a href="/name/nm3042406/">
Anja Stanic
</a>
,
<a href="/name/nm12338666/">
Luka Saranovic
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="78924" name="nv">
78,924
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt10295212">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt10295212/">
<img alt="Shershaah" class="loadlate" data-tconst="tt10295212" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjk1NzcwMDUtNDU4ZC00MzlhLTkzZjAtM2MxMTRjZGE0ODdhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR3,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
8.
</span>
<a href="/title/tt10295212/">
Shershaah
</a>
<span class="lister-item-year text-muted unbold">
(2021)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
135 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Biography, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.9
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt10295212" id="urv_tt10295212">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt10295212">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt10295212|imdb|8.9|8.9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.9/10 (84,823 votes) - click stars to rate">
<meta content="8.9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="84823" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 124.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt10295212/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
This is a story of a PVC awardee brave Indian soldier - Capt. Vikram Batra, who shot to fame and became a household name during the Kargil War in 1999. His indomitable spirit and his unflinching courage in chasing the Pakistani soldiers out of Indian territory contributed immensely in India finally winning the Kargil War in 1999.
</p>
<p class="">
Director:
<a href="/name/nm3315387/">
Vishnuvardhan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm3289096/">
Sidharth Malhotra
</a>
,
<a href="/name/nm6442009/">
Kiara Advani
</a>
,
<a href="/name/nm3109407/">
Shiv Panditt
</a>
,
<a href="/name/nm1306410/">
Sahil Vaid
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="84823" name="nv">
84,823
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0167260">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0167260/">
<img alt="The Lord of the Rings: The Return of the King" class="loadlate" data-tconst="tt0167260" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNzA5ZDNlZWMtM2NhNS00NDJjLTk4NDItYTRmY2EwMWZlMTY3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
9.
</span>
<a href="/title/tt0167260/">
The Lord of the Rings: The Return of the King
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
201 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.9
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0167260" id="urv_tt0167260">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0167260">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0167260|imdb|8.9|8.9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.9/10 (1,702,638 votes) - click stars to rate">
<meta content="8.9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1702638" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 124.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0167260/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
94
</span>
Metascore
</div>
</div>
<p class="text-muted">
Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.
</p>
<p class="">
Director:
<a href="/name/nm0001392/">
Peter Jackson
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000704/">
Elijah Wood
</a>
,
<a href="/name/nm0001557/">
Viggo Mortensen
</a>
,
<a href="/name/nm0005212/">
Ian McKellen
</a>
,
<a href="/name/nm0089217/">
Orlando Bloom
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1702638" name="nv">
1,702,638
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="377,845,905" name="nv">
$377.85M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0110912">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0110912/">
<img alt="Pulp Fiction" class="loadlate" data-tconst="tt0110912" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNGNhMDIzZTUtNTBlZi00MTRlLWFjM2ItYzViMjE3YzI5MjljXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UY98_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
10.
</span>
<a href="/title/tt0110912/">
Pulp Fiction
</a>
<span class="lister-item-year text-muted unbold">
(1994)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
154 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.9
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0110912" id="urv_tt0110912">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0110912">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0110912|imdb|8.9|8.9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.9/10 (1,899,883 votes) - click stars to rate">
<meta content="8.9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1899883" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 124.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0110912/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
94
</span>
Metascore
</div>
</div>
<p class="text-muted">
The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.
</p>
<p class="">
Director:
<a href="/name/nm0000233/">
Quentin Tarantino
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000237/">
John Travolta
</a>
,
<a href="/name/nm0000235/">
Uma Thurman
</a>
,
<a href="/name/nm0000168/">
Samuel L. Jackson
</a>
,
<a href="/name/nm0000246/">
Bruce Willis
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1899883" name="nv">
1,899,883
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="107,928,762" name="nv">
$107.93M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0108052">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0108052/">
<img alt="Schindler's List" class="loadlate" data-tconst="tt0108052" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNDE4OTMxMTctNmRhYy00NWE2LTg3YzItYTk3M2UwOTU5Njg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
11.
</span>
<a href="/title/tt0108052/">
Schindler's List
</a>
<span class="lister-item-year text-muted unbold">
(1993)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
195 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Biography, Drama, History
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.9" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.9
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0108052" id="urv_tt0108052">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0108052">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0108052|imdb|8.9|8.9|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.9/10 (1,260,872 votes) - click stars to rate">
<meta content="8.9" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1260872" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 124.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.9
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0108052/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
94
</span>
Metascore
</div>
</div>
<p class="text-muted">
In German-occupied Poland during World War II, industrialist
<a href="/name/nm0771861">
Oskar Schindler
</a>
gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.
</p>
<p class="">
Director:
<a href="/name/nm0000229/">
Steven Spielberg
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000553/">
Liam Neeson
</a>
,
<a href="/name/nm0000146/">
Ralph Fiennes
</a>
,
<a href="/name/nm0001426/">
Ben Kingsley
</a>
,
<a href="/name/nm0328751/">
Caroline Goodall
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1260872" name="nv">
1,260,872
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="96,898,818" name="nv">
$96.90M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt1375666">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt1375666/">
<img alt="Inception" class="loadlate" data-tconst="tt1375666" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
12.
</span>
<a href="/title/tt1375666/">
Inception
</a>
<span class="lister-item-year text-muted unbold">
(2010)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
148 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.8" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.8
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt1375666" id="urv_tt1375666">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt1375666">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt1375666|imdb|8.8|8.8|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.8/10 (2,159,085 votes) - click stars to rate">
<meta content="8.8" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="2159085" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 123.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.8
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt1375666/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
74
</span>
Metascore
</div>
</div>
<p class="text-muted">
A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.
</p>
<p class="">
Director:
<a href="/name/nm0634240/">
Christopher Nolan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000138/">
Leonardo DiCaprio
</a>
,
<a href="/name/nm0330687/">
Joseph Gordon-Levitt
</a>
,
<a href="/name/nm0680983/">
Elliot Page
</a>
,
<a href="/name/nm0913822/">
Ken Watanabe
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="2159085" name="nv">
2,159,085
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="292,576,195" name="nv">
$292.58M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0137523">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0137523/">
<img alt="Fight Club" class="loadlate" data-tconst="tt0137523" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMmEzNTkxYjQtZTc0MC00YTVjLTg5ZTEtZWMwOWVlYzY0NWIwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
13.
</span>
<a href="/title/tt0137523/">
Fight Club
</a>
<span class="lister-item-year text-muted unbold">
(1999)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
139 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.8" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.8
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0137523" id="urv_tt0137523">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0137523">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0137523|imdb|8.8|8.8|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.8/10 (1,931,240 votes) - click stars to rate">
<meta content="8.8" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1931240" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 123.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.8
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0137523/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
66
</span>
Metascore
</div>
</div>
<p class="text-muted">
An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more.
</p>
<p class="">
Director:
<a href="/name/nm0000399/">
David Fincher
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000093/">
Brad Pitt
</a>
,
<a href="/name/nm0001570/">
Edward Norton
</a>
,
<a href="/name/nm0001533/">
Meat Loaf
</a>
,
<a href="/name/nm0340260/">
Zach Grenier
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1931240" name="nv">
1,931,240
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="37,030,102" name="nv">
$37.03M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0120737">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0120737/">
<img alt="The Lord of the Rings: The Fellowship of the Ring" class="loadlate" data-tconst="tt0120737" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BN2EyZjM3NzUtNWUzMi00MTgxLWI0NTctMzY4M2VlOTdjZWRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
14.
</span>
<a href="/title/tt0120737/">
The Lord of the Rings: The Fellowship of the Ring
</a>
<span class="lister-item-year text-muted unbold">
(2001)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
178 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.8" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.8
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0120737" id="urv_tt0120737">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0120737">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0120737|imdb|8.8|8.8|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.8/10 (1,723,878 votes) - click stars to rate">
<meta content="8.8" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1723878" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 123.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.8
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0120737/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
92
</span>
Metascore
</div>
</div>
<p class="text-muted">
A meek Hobbit from the Shire and eight companions set out on a journey to destroy the powerful One Ring and save Middle-earth from the Dark Lord Sauron.
</p>
<p class="">
Director:
<a href="/name/nm0001392/">
Peter Jackson
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000704/">
Elijah Wood
</a>
,
<a href="/name/nm0005212/">
Ian McKellen
</a>
,
<a href="/name/nm0089217/">
Orlando Bloom
</a>
,
<a href="/name/nm0000293/">
Sean Bean
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1723878" name="nv">
1,723,878
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="315,544,750" name="nv">
$315.54M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0109830">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0109830/">
<img alt="Forrest Gump" class="loadlate" data-tconst="tt0109830" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNWIwODRlZTUtY2U3ZS00Yzg1LWJhNzYtMmZiYmEyNmU1NjMzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UY98_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
15.
</span>
<a href="/title/tt0109830/">
Forrest Gump
</a>
<span class="lister-item-year text-muted unbold">
(1994)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
142 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.8" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.8
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0109830" id="urv_tt0109830">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0109830">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0109830|imdb|8.8|8.8|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.8/10 (1,894,736 votes) - click stars to rate">
<meta content="8.8" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1894736" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 123.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.8
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0109830/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
82
</span>
Metascore
</div>
</div>
<p class="text-muted">
The presidencies of Kennedy and Johnson, the Vietnam War, the Watergate scandal and other historical events unfold from the perspective of an Alabama man with an IQ of 75, whose only desire is to be reunited with his childhood sweetheart.
</p>
<p class="">
Director:
<a href="/name/nm0000709/">
Robert Zemeckis
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000158/">
Tom Hanks
</a>
,
<a href="/name/nm0000705/">
Robin Wright
</a>
,
<a href="/name/nm0000641/">
Gary Sinise
</a>
,
<a href="/name/nm0000398/">
Sally Field
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1894736" name="nv">
1,894,736
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="330,252,182" name="nv">
$330.25M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0060196">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0060196/">
<img alt="Il buono, il brutto, il cattivo" class="loadlate" data-tconst="tt0060196" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOTQ5NDI3MTI4MF5BMl5BanBnXkFtZTgwNDQ4ODE5MDE@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
16.
</span>
<a href="/title/tt0060196/">
Il buono, il brutto, il cattivo
</a>
<span class="lister-item-year text-muted unbold">
(1966)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
161 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Western
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.8" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.8
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0060196" id="urv_tt0060196">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0060196">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0060196|imdb|8.8|8.8|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.8/10 (714,733 votes) - click stars to rate">
<meta content="8.8" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="714733" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 123.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.8
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0060196/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
90
</span>
Metascore
</div>
</div>
<p class="text-muted">
A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.
</p>
<p class="">
Director:
<a href="/name/nm0001466/">
Sergio Leone
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000142/">
Clint Eastwood
</a>
,
<a href="/name/nm0908919/">
Eli Wallach
</a>
,
<a href="/name/nm0001812/">
Lee Van Cleef
</a>
,
<a href="/name/nm0321294/">
Aldo Giuffrè
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="714733" name="nv">
714,733
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="6,100,000" name="nv">
$6.10M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0167261">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0167261/">
<img alt="The Lord of the Rings: The Two Towers" class="loadlate" data-tconst="tt0167261" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZGMxZTdjZmYtMmE2Ni00ZTdkLWI5NTgtNjlmMjBiNzU2MmI5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
17.
</span>
<a href="/title/tt0167261/">
The Lord of the Rings: The Two Towers
</a>
<span class="lister-item-year text-muted unbold">
(2002)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
179 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.7" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.7
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0167261" id="urv_tt0167261">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0167261">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0167261|imdb|8.7|8.7|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.7/10 (1,539,391 votes) - click stars to rate">
<meta content="8.7" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1539391" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 121.8px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.7
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0167261/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
87
</span>
Metascore
</div>
</div>
<p class="text-muted">
While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.
</p>
<p class="">
Director:
<a href="/name/nm0001392/">
Peter Jackson
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000704/">
Elijah Wood
</a>
,
<a href="/name/nm0005212/">
Ian McKellen
</a>
,
<a href="/name/nm0001557/">
Viggo Mortensen
</a>
,
<a href="/name/nm0089217/">
Orlando Bloom
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1539391" name="nv">
1,539,391
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="342,551,365" name="nv">
$342.55M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0133093">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0133093/">
<img alt="The Matrix" class="loadlate" data-tconst="tt0133093" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNzQzOTk3OTAtNDQ0Zi00ZTVkLWI0MTEtMDllZjNkYzNjNTc4L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
18.
</span>
<a href="/title/tt0133093/">
The Matrix
</a>
<span class="lister-item-year text-muted unbold">
(1999)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
136 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.7" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.7
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0133093" id="urv_tt0133093">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0133093">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0133093|imdb|8.7|8.7|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.7/10 (1,744,520 votes) - click stars to rate">
<meta content="8.7" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1744520" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 121.8px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.7
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0133093/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
73
</span>
Metascore
</div>
</div>
<p class="text-muted">
When a beautiful stranger leads computer hacker Neo to a forbidding underworld, he discovers the shocking truth--the life he knows is the elaborate deception of an evil cyber-intelligence.
</p>
<p class="">
Directors:
<a href="/name/nm0905154/">
Lana Wachowski
</a>
,
<a href="/name/nm0905152/">
Lilly Wachowski
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000206/">
Keanu Reeves
</a>
,
<a href="/name/nm0000401/">
Laurence Fishburne
</a>
,
<a href="/name/nm0005251/">
Carrie-Anne Moss
</a>
,
<a href="/name/nm0915989/">
Hugo Weaving
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1744520" name="nv">
1,744,520
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="171,479,930" name="nv">
$171.48M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0099685">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0099685/">
<img alt="Goodfellas" class="loadlate" data-tconst="tt0099685" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BY2NkZjEzMDgtN2RjYy00YzM1LWI4ZmQtMjIwYjFjNmI3ZGEwXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
19.
</span>
<a href="/title/tt0099685/">
Goodfellas
</a>
<span class="lister-item-year text-muted unbold">
(1990)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
146 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Biography, Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.7" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.7
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0099685" id="urv_tt0099685">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0099685">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0099685|imdb|8.7|8.7|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.7/10 (1,064,493 votes) - click stars to rate">
<meta content="8.7" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1064493" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 121.8px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.7
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0099685/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
90
</span>
Metascore
</div>
</div>
<p class="text-muted">
The story of
<a href="/name/nm1453737">
Henry Hill
</a>
and his life in the mob, covering his relationship with his wife Karen Hill and his mob partners Jimmy Conway and Tommy DeVito in the Italian-American crime syndicate.
</p>
<p class="">
Director:
<a href="/name/nm0000217/">
Martin Scorsese
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000134/">
Robert De Niro
</a>
,
<a href="/name/nm0000501/">
Ray Liotta
</a>
,
<a href="/name/nm0000582/">
Joe Pesci
</a>
,
<a href="/name/nm0000966/">
Lorraine Bracco
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1064493" name="nv">
1,064,493
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="46,836,394" name="nv">
$46.84M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0080684">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0080684/">
<img alt="Star Wars: Episode V - The Empire Strikes Back" class="loadlate" data-tconst="tt0080684" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYmU1NDRjNDgtMzhiMi00NjZmLTg5NGItZDNiZjU5NTU4OTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
20.
</span>
<a href="/title/tt0080684/">
Star Wars: Episode V - The Empire Strikes Back
</a>
<span class="lister-item-year text-muted unbold">
(1980)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
124 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Fantasy
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.7" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.7
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0080684" id="urv_tt0080684">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0080684">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0080684|imdb|8.7|8.7|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.7/10 (1,200,394 votes) - click stars to rate">
<meta content="8.7" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1200394" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 121.8px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.7
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0080684/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
82
</span>
Metascore
</div>
</div>
<p class="text-muted">
After the Rebels are brutally overpowered by the Empire on the ice planet Hoth, Luke Skywalker begins Jedi training with Yoda, while his friends are pursued across the galaxy by Darth Vader and bounty hunter Boba Fett.
</p>
<p class="">
Director:
<a href="/name/nm0449984/">
Irvin Kershner
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000434/">
Mark Hamill
</a>
,
<a href="/name/nm0000148/">
Harrison Ford
</a>
,
<a href="/name/nm0000402/">
Carrie Fisher
</a>
,
<a href="/name/nm0001850/">
Billy Dee Williams
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1200394" name="nv">
1,200,394
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="290,475,067" name="nv">
$290.48M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0073486">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0073486/">
<img alt="One Flew Over the Cuckoo's Nest" class="loadlate" data-tconst="tt0073486" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZjA0OWVhOTAtYWQxNi00YzNhLWI4ZjYtNjFjZTEyYjJlNDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
21.
</span>
<a href="/title/tt0073486/">
One Flew Over the Cuckoo's Nest
</a>
<span class="lister-item-year text-muted unbold">
(1975)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
133 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.7" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.7
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0073486" id="urv_tt0073486">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0073486">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0073486|imdb|8.7|8.7|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.7/10 (950,387 votes) - click stars to rate">
<meta content="8.7" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="950387" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 121.8px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.7
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0073486/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
84
</span>
Metascore
</div>
</div>
<p class="text-muted">
A criminal pleads insanity and is admitted to a mental institution, where he rebels against the oppressive nurse and rallies up the scared patients.
</p>
<p class="">
Director:
<a href="/name/nm0001232/">
Milos Forman
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000197/">
Jack Nicholson
</a>
,
<a href="/name/nm0001221/">
Louise Fletcher
</a>
,
<a href="/name/nm0077720/">
Michael Berryman
</a>
,
<a href="/name/nm0110480/">
Peter Brocco
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="950387" name="nv">
950,387
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="112,000,000" name="nv">
$112.00M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt6751668">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt6751668/">
<img alt="Gisaengchung" class="loadlate" data-tconst="tt6751668" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYWZjMjk3ZTItODQ2ZC00NTY5LWE0ZDYtZTI3MjcwN2Q5NTVkXkEyXkFqcGdeQXVyODk4OTc3MTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
22.
</span>
<a href="/title/tt6751668/">
Gisaengchung
</a>
<span class="lister-item-year text-muted unbold">
(2019)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
132 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt6751668" id="urv_tt6751668">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt6751668">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt6751668|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (650,304 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="650304" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt6751668/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
96
</span>
Metascore
</div>
</div>
<p class="text-muted">
Greed and class discrimination threaten the newly formed symbiotic relationship between the wealthy Park family and the destitute Kim clan.
</p>
<p class="">
Director:
<a href="/name/nm0094435/">
Bong Joon Ho
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0814280/">
Kang-ho Song
</a>
,
<a href="/name/nm1310525/">
Sun-kyun Lee
</a>
,
<a href="/name/nm1856097/">
Yeo-jeong Cho
</a>
,
<a href="/name/nm6079248/">
Woo-sik Choi
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="650304" name="nv">
650,304
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="53,367,844" name="nv">
$53.37M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt12361178">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt12361178/">
<img alt="Drishyam 2" class="loadlate" data-tconst="tt12361178" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BM2RiZDVjYWEtZGNhYy00ZGU0LTgwZjMtZTJmNmMyNGQ5NGYyXkEyXkFqcGdeQXVyNjY1MTg4Mzc@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
23.
</span>
<a href="/title/tt12361178/">
Drishyam 2
</a>
<span class="lister-item-year text-muted unbold">
(2021)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
13
</span>
<span class="ghost">
|
</span>
<span class="runtime">
152 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt12361178" id="urv_tt12361178">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt12361178">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt12361178|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (30,250 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="30250" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt12361178/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A gripping tale of an investigation and a family which is threatened by it. Will Georgekutty be able to protect his family this time?
</p>
<p class="">
Director:
<a href="/name/nm2572228/">
Jeethu Joseph
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0482320/">
Mohanlal
</a>
,
<a href="/name/nm0576169/">
Meena
</a>
,
<a href="/name/nm6189602/">
Ansiba
</a>
,
<a href="/name/nm6189601/">
Esther Anil
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="30250" name="nv">
30,250
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0816692">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0816692/">
<img alt="Interstellar" class="loadlate" data-tconst="tt0816692" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZjdkOTU3MDktN2IxOS00OGEyLWFmMjktY2FiMmZkNWIyODZiXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
24.
</span>
<a href="/title/tt0816692/">
Interstellar
</a>
<span class="lister-item-year text-muted unbold">
(2014)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
169 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Adventure, Drama, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0816692" id="urv_tt0816692">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0816692">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0816692|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (1,603,507 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1603507" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0816692/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
74
</span>
Metascore
</div>
</div>
<p class="text-muted">
A team of explorers travel through a wormhole in space in an attempt to ensure humanity's survival.
</p>
<p class="">
Director:
<a href="/name/nm0634240/">
Christopher Nolan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000190/">
Matthew McConaughey
</a>
,
<a href="/name/nm0004266/">
Anne Hathaway
</a>
,
<a href="/name/nm1567113/">
Jessica Chastain
</a>
,
<a href="/name/nm3237775/">
Mackenzie Foy
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1603507" name="nv">
1,603,507
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="188,020,017" name="nv">
$188.02M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0317248">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0317248/">
<img alt="Cidade de Deus" class="loadlate" data-tconst="tt0317248" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOTMwYjc5ZmItYTFjZC00ZGQ3LTlkNTMtMjZiNTZlMWQzNzI5XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
25.
</span>
<a href="/title/tt0317248/">
Cidade de Deus
</a>
<span class="lister-item-year text-muted unbold">
(2002)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
130 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0317248" id="urv_tt0317248">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0317248">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0317248|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (719,398 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="719398" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0317248/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
79
</span>
Metascore
</div>
</div>
<p class="text-muted">
In the slums of Rio, two kids' paths diverge as one struggles to become a photographer and the other a kingpin.
</p>
<p class="">
Directors:
<a href="/name/nm0576987/">
Fernando Meirelles
</a>
,
<a href="/name/nm0526199/">
Kátia Lund
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1179105/">
Alexandre Rodrigues
</a>
,
<a href="/name/nm1129884/">
Leandro Firmino
</a>
,
<a href="/name/nm0618690/">
Matheus Nachtergaele
</a>
,
<a href="/name/nm1249574/">
Phellipe Haagensen
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="719398" name="nv">
719,398
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="7,563,397" name="nv">
$7.56M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0245429">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0245429/">
<img alt="Sen to Chihiro no kamikakushi" class="loadlate" data-tconst="tt0245429" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjlmZmI5MDctNDE2YS00YWE0LWE5ZWItZDBhYWQ0NTcxNWRhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
26.
</span>
<a href="/title/tt0245429/">
Sen to Chihiro no kamikakushi
</a>
<span class="lister-item-year text-muted unbold">
(2001)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
125 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Adventure, Family
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0245429" id="urv_tt0245429">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0245429">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0245429|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (689,000 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="689000" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0245429/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
96
</span>
Metascore
</div>
</div>
<p class="text-muted">
During her family's move to the suburbs, a sullen 10-year-old girl wanders into a world ruled by gods, witches, and spirits, and where humans are changed into beasts.
</p>
<p class="">
Director:
<a href="/name/nm0594503/">
Hayao Miyazaki
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0153738/">
Daveigh Chase
</a>
,
<a href="/name/nm0687189/">
Suzanne Pleshette
</a>
,
<a href="/name/nm0997115/">
Miyu Irino
</a>
,
<a href="/name/nm0383708/">
Rumi Hiiragi
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="689000" name="nv">
689,000
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="10,055,859" name="nv">
$10.06M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0120815">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0120815/">
<img alt="Saving Private Ryan" class="loadlate" data-tconst="tt0120815" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZjhkMDM4MWItZTVjOC00ZDRhLThmYTAtM2I5NzBmNmNlMzI1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
27.
</span>
<a href="/title/tt0120815/">
Saving Private Ryan
</a>
<span class="lister-item-year text-muted unbold">
(1998)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
169 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0120815" id="urv_tt0120815">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0120815">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0120815|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (1,286,262 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1286262" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0120815/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
91
</span>
Metascore
</div>
</div>
<p class="text-muted">
Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.
</p>
<p class="">
Director:
<a href="/name/nm0000229/">
Steven Spielberg
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000158/">
Tom Hanks
</a>
,
<a href="/name/nm0000354/">
Matt Damon
</a>
,
<a href="/name/nm0001744/">
Tom Sizemore
</a>
,
<a href="/name/nm0122653/">
Edward Burns
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1286262" name="nv">
1,286,262
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="216,540,909" name="nv">
$216.54M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0120689">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0120689/">
<img alt="The Green Mile" class="loadlate" data-tconst="tt0120689" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTUxMzQyNjA5MF5BMl5BanBnXkFtZTYwOTU2NTY3._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
28.
</span>
<a href="/title/tt0120689/">
The Green Mile
</a>
<span class="lister-item-year text-muted unbold">
(1999)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
189 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Fantasy
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0120689" id="urv_tt0120689">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0120689">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0120689|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (1,197,704 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1197704" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0120689/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
61
</span>
Metascore
</div>
</div>
<p class="text-muted">
The lives of guards on Death Row are affected by one of their charges: a black man accused of child murder and rape, yet who has a mysterious gift.
</p>
<p class="">
Director:
<a href="/name/nm0001104/">
Frank Darabont
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000158/">
Tom Hanks
</a>
,
<a href="/name/nm0003817/">
Michael Clarke Duncan
</a>
,
<a href="/name/nm0001556/">
David Morse
</a>
,
<a href="/name/nm0001372/">
Bonnie Hunt
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1197704" name="nv">
1,197,704
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="136,801,374" name="nv">
$136.80M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0118799">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0118799/">
<img alt="La vita è bella" class="loadlate" data-tconst="tt0118799" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYmJmM2Q4NmMtYThmNC00ZjRlLWEyZmItZTIwOTBlZDQ3NTQ1XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
29.
</span>
<a href="/title/tt0118799/">
La vita è bella
</a>
<span class="lister-item-year text-muted unbold">
(1997)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
116 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0118799" id="urv_tt0118799">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0118799">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0118799|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (649,042 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="649042" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0118799/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">
59
</span>
Metascore
</div>
</div>
<p class="text-muted">
When an open-minded Jewish librarian and his son become victims of the Holocaust, he uses a perfect mixture of will, humor, and imagination to protect his son from the dangers around their camp.
</p>
<p class="">
Director:
<a href="/name/nm0000905/">
Roberto Benigni
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000905/">
Roberto Benigni
</a>
,
<a href="/name/nm0000971/">
Nicoletta Braschi
</a>
,
<a href="/name/nm0134493/">
Giorgio Cantarini
</a>
,
<a href="/name/nm0243842/">
Giustino Durano
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="649042" name="nv">
649,042
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="57,598,247" name="nv">
$57.60M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0114369">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0114369/">
<img alt="Se7en" class="loadlate" data-tconst="tt0114369" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOTUwODM5MTctZjczMi00OTk4LTg3NWUtNmVhMTAzNTNjYjcyXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
30.
</span>
<a href="/title/tt0114369/">
Se7en
</a>
<span class="lister-item-year text-muted unbold">
(1995)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
127 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Mystery
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0114369" id="urv_tt0114369">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0114369">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0114369|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (1,508,693 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1508693" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0114369/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
65
</span>
Metascore
</div>
</div>
<p class="text-muted">
Two detectives, a rookie and a veteran, hunt a serial killer who uses the seven deadly sins as his motives.
</p>
<p class="">
Director:
<a href="/name/nm0000399/">
David Fincher
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000151/">
Morgan Freeman
</a>
,
<a href="/name/nm0000093/">
Brad Pitt
</a>
,
<a href="/name/nm0000228/">
Kevin Spacey
</a>
,
<a href="/name/nm0001825/">
Andrew Kevin Walker
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1508693" name="nv">
1,508,693
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="100,125,643" name="nv">
$100.13M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0102926">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0102926/">
<img alt="The Silence of the Lambs" class="loadlate" data-tconst="tt0102926" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
31.
</span>
<a href="/title/tt0102926/">
The Silence of the Lambs
</a>
<span class="lister-item-year text-muted unbold">
(1991)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
118 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0102926" id="urv_tt0102926">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0102926">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0102926|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (1,325,405 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1325405" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0102926/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
85
</span>
Metascore
</div>
</div>
<p class="text-muted">
A young F.B.I. cadet must receive the help of an incarcerated and manipulative cannibal killer to help catch another serial killer, a madman who skins his victims.
</p>
<p class="">
Director:
<a href="/name/nm0001129/">
Jonathan Demme
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000149/">
Jodie Foster
</a>
,
<a href="/name/nm0000164/">
Anthony Hopkins
</a>
,
<a href="/name/nm0095029/">
Lawrence A. Bonney
</a>
,
<a href="/name/nm0501435/">
Kasi Lemmons
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1325405" name="nv">
1,325,405
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="130,742,922" name="nv">
$130.74M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0076759">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0076759/">
<img alt="Star Wars" class="loadlate" data-tconst="tt0076759" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNzVlY2MwMjktM2E4OS00Y2Y3LWE3ZjctYzhkZGM3YzA1ZWM2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
32.
</span>
<a href="/title/tt0076759/">
Star Wars
</a>
<span class="lister-item-year text-muted unbold">
(1977)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
121 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Fantasy
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0076759" id="urv_tt0076759">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0076759">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0076759|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (1,272,354 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1272354" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0076759/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
90
</span>
Metascore
</div>
</div>
<p class="text-muted">
Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth Vader.
</p>
<p class="">
Director:
<a href="/name/nm0000184/">
George Lucas
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000434/">
Mark Hamill
</a>
,
<a href="/name/nm0000148/">
Harrison Ford
</a>
,
<a href="/name/nm0000402/">
Carrie Fisher
</a>
,
<a href="/name/nm0000027/">
Alec Guinness
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1272354" name="nv">
1,272,354
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="322,740,140" name="nv">
$322.74M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0056058">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0056058/">
<img alt="Seppuku" class="loadlate" data-tconst="tt0056058" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYjBmYTQ1NjItZWU5MS00YjI0LTg2OTYtYmFkN2JkMmNiNWVkXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UY98_CR2,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
33.
</span>
<a href="/title/tt0056058/">
Seppuku
</a>
<span class="lister-item-year text-muted unbold">
(1962)
</span>
</h3>
<p class="text-muted">
<span class="runtime">
133 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Drama, Mystery
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0056058" id="urv_tt0056058">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0056058">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0056058|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (48,306 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="48306" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0056058/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
85
</span>
Metascore
</div>
</div>
<p class="text-muted">
When a ronin requesting seppuku at a feudal lord's palace is told of the brutal suicide of another ronin who previously visited, he reveals how their pasts are intertwined - and in doing so challenges the clan's integrity.
</p>
<p class="">
Director:
<a href="/name/nm0462030/">
Masaki Kobayashi
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0619938/">
Tatsuya Nakadai
</a>
,
<a href="/name/nm0410968/">
Akira Ishihama
</a>
,
<a href="/name/nm0412615/">
Shima Iwashita
</a>
,
<a href="/name/nm0848533/">
Tetsurô Tanba
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="48306" name="nv">
48,306
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0047478">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0047478/">
<img alt="Shichinin no samurai" class="loadlate" data-tconst="tt0047478" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOWE4ZDdhNmMtNzE5ZC00NzExLTlhNGMtY2ZhYjYzODEzODA1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
34.
</span>
<a href="/title/tt0047478/">
Shichinin no samurai
</a>
<span class="lister-item-year text-muted unbold">
(1954)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
207 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0047478" id="urv_tt0047478">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0047478">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0047478|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (327,578 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="327578" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0047478/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
98
</span>
Metascore
</div>
</div>
<p class="text-muted">
A poor village under attack by bandits recruits seven unemployed samurai to help them defend themselves.
</p>
<p class="">
Director:
<a href="/name/nm0000041/">
Akira Kurosawa
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0001536/">
Toshirô Mifune
</a>
,
<a href="/name/nm0793766/">
Takashi Shimura
</a>
,
<a href="/name/nm0875477/">
Keiko Tsushima
</a>
,
<a href="/name/nm0793616/">
Yukiko Shimazaki
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="327578" name="nv">
327,578
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="269,061" name="nv">
$0.27M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0038650">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0038650/">
<img alt="It's a Wonderful Life" class="loadlate" data-tconst="tt0038650" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZjc4NDZhZWMtNGEzYS00ZWU2LThlM2ItNTA0YzQ0OTExMTE2XkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_UY98_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
35.
</span>
<a href="/title/tt0038650/">
It's a Wonderful Life
</a>
<span class="lister-item-year text-muted unbold">
(1946)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
PG
</span>
<span class="ghost">
|
</span>
<span class="runtime">
130 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Family, Fantasy
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.6" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.6
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0038650" id="urv_tt0038650">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0038650">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0038650|imdb|8.6|8.6|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.6/10 (420,765 votes) - click stars to rate">
<meta content="8.6" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="420765" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 120.4px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.6
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0038650/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
89
</span>
Metascore
</div>
</div>
<p class="text-muted">
An angel is sent from Heaven to help a desperately frustrated businessman by showing him what life would have been like if he had never existed.
</p>
<p class="">
Director:
<a href="/name/nm0001008/">
Frank Capra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000071/">
James Stewart
</a>
,
<a href="/name/nm0001656/">
Donna Reed
</a>
,
<a href="/name/nm0000859/">
Lionel Barrymore
</a>
,
<a href="/name/nm0593775/">
Thomas Mitchell
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="420765" name="nv">
420,765
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt7060344">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt7060344/">
<img alt="Ratsasan" class="loadlate" data-tconst="tt7060344" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjU2NzIzMjYtMGE2ZS00YzgzLWE5MzgtZTFiYTlmOWNlYmJkXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UY98_CR2,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
36.
</span>
<a href="/title/tt7060344/">
Ratsasan
</a>
<span class="lister-item-year text-muted unbold">
(2018)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
170 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Mystery
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt7060344" id="urv_tt7060344">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt7060344">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt7060344|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (34,099 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="34099" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt7060344/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A sub-inspector sets out in pursuit of a mysterious serial killer who targets teen school girls and murders them brutally.
</p>
<p class="">
Director:
<a href="/name/nm6442107/">
Ram Kumar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm3684167/">
Vishnu Vishal
</a>
,
<a href="/name/nm3898762/">
Amala Paul
</a>
,
<a href="/name/nm1099597/">
Radha Ravi
</a>
,
<a href="/name/nm3905156/">
Sangili Murugan
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="34099" name="nv">
34,099
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt2582802">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt2582802/">
<img alt="Whiplash" class="loadlate" data-tconst="tt2582802" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOTA5NDZlZGUtMjAxOS00YTRkLTkwYmMtYWQ0NWEwZDZiNjEzXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
37.
</span>
<a href="/title/tt2582802/">
Whiplash
</a>
<span class="lister-item-year text-muted unbold">
(2014)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
106 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Music
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt2582802" id="urv_tt2582802">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt2582802">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt2582802|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (758,265 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="758265" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt2582802/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
88
</span>
Metascore
</div>
</div>
<p class="text-muted">
A promising young drummer enrolls at a cut-throat music conservatory where his dreams of greatness are mentored by an instructor who will stop at nothing to realize a student's potential.
</p>
<p class="">
Director:
<a href="/name/nm3227090/">
Damien Chazelle
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1886602/">
Miles Teller
</a>
,
<a href="/name/nm0799777/">
J.K. Simmons
</a>
,
<a href="/name/nm2552034/">
Melissa Benoist
</a>
,
<a href="/name/nm0001663/">
Paul Reiser
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="758265" name="nv">
758,265
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="13,092,000" name="nv">
$13.09M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt1675434">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt1675434/">
<img alt="The Intouchables" class="loadlate" data-tconst="tt1675434" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTYxNDA3MDQwNl5BMl5BanBnXkFtZTcwNTU4Mzc1Nw@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
38.
</span>
<a href="/title/tt1675434/">
The Intouchables
</a>
<span class="lister-item-year text-muted unbold">
(2011)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
112 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Biography, Comedy, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt1675434" id="urv_tt1675434">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt1675434">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt1675434|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (792,850 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="792850" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt1675434/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">
57
</span>
Metascore
</div>
</div>
<p class="text-muted">
After he becomes a quadriplegic from a paragliding accident, an aristocrat hires a young man from the projects to be his caregiver.
</p>
<p class="">
Directors:
<a href="/name/nm0619923/">
Olivier Nakache
</a>
,
<a href="/name/nm0865918/">
Éric Toledano
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0167388/">
François Cluzet
</a>
,
<a href="/name/nm1082477/">
Omar Sy
</a>
,
<a href="/name/nm0494504/">
Anne Le Ny
</a>
,
<a href="/name/nm1109153/">
Audrey Fleurot
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="792850" name="nv">
792,850
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="13,182,281" name="nv">
$13.18M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0482571">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0482571/">
<img alt="The Prestige" class="loadlate" data-tconst="tt0482571" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjA4NDI0MTIxNF5BMl5BanBnXkFtZTYwNTM0MzY2._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
39.
</span>
<a href="/title/tt0482571/">
The Prestige
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
130 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Mystery, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0482571" id="urv_tt0482571">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0482571">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0482571|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,239,025 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1239025" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0482571/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
66
</span>
Metascore
</div>
</div>
<p class="text-muted">
After a tragic accident, two stage magicians engage in a battle to create the ultimate illusion while sacrificing everything they have to outwit each other.
</p>
<p class="">
Director:
<a href="/name/nm0634240/">
Christopher Nolan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000288/">
Christian Bale
</a>
,
<a href="/name/nm0413168/">
Hugh Jackman
</a>
,
<a href="/name/nm0424060/">
Scarlett Johansson
</a>
,
<a href="/name/nm0000323/">
Michael Caine
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1238945" name="nv">
1,238,945
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="53,089,891" name="nv">
$53.09M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0407887">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0407887/">
<img alt="The Departed" class="loadlate" data-tconst="tt0407887" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
40.
</span>
<a href="/title/tt0407887/">
The Departed
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
151 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0407887" id="urv_tt0407887">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0407887">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0407887|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,235,236 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1235236" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0407887/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
85
</span>
Metascore
</div>
</div>
<p class="text-muted">
A crime action film about an undercover cop and a mole in the police attempting to identify each other while infiltrating an Irish gang in South Boston.
</p>
<p class="">
Director:
<a href="/name/nm0000217/">
Martin Scorsese
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000138/">
Leonardo DiCaprio
</a>
,
<a href="/name/nm0000354/">
Matt Damon
</a>
,
<a href="/name/nm0000197/">
Jack Nicholson
</a>
,
<a href="/name/nm0000242/">
Mark Wahlberg
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1235236" name="nv">
1,235,236
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="132,384,315" name="nv">
$132.38M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0253474">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0253474/">
<img alt="The Pianist" class="loadlate" data-tconst="tt0253474" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOWRiZDIxZjktMTA1NC00MDQ2LWEzMjUtMTliZmY3NjQ3ODJiXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR2,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
41.
</span>
<a href="/title/tt0253474/">
The Pianist
</a>
<span class="lister-item-year text-muted unbold">
(2002)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
13
</span>
<span class="ghost">
|
</span>
<span class="runtime">
150 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Biography, Drama, Music
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0253474" id="urv_tt0253474">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0253474">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0253474|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (766,318 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="766318" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0253474/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
85
</span>
Metascore
</div>
</div>
<p class="text-muted">
A Polish Jewish musician struggles to survive the destruction of the Warsaw ghetto of World War II.
</p>
<p class="">
Director:
<a href="/name/nm0000591/">
Roman Polanski
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004778/">
Adrien Brody
</a>
,
<a href="/name/nm0470981/">
Thomas Kretschmann
</a>
,
<a href="/name/nm0277975/">
Frank Finlay
</a>
,
<a href="/name/nm0288976/">
Emilia Fox
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="766318" name="nv">
766,318
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="32,572,577" name="nv">
$32.57M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0172495">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0172495/">
<img alt="Gladiator" class="loadlate" data-tconst="tt0172495" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMDliMmNhNDEtODUyOS00MjNlLTgxODEtN2U3NzIxMGVkZTA1L2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
42.
</span>
<a href="/title/tt0172495/">
Gladiator
</a>
<span class="lister-item-year text-muted unbold">
(2000)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
155 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0172495" id="urv_tt0172495">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0172495">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0172495|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,392,644 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1392644" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0172495/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
67
</span>
Metascore
</div>
</div>
<p class="text-muted">
A former Roman General sets out to exact vengeance against the corrupt emperor who murdered his family and sent him into slavery.
</p>
<p class="">
Director:
<a href="/name/nm0000631/">
Ridley Scott
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000128/">
Russell Crowe
</a>
,
<a href="/name/nm0001618/">
Joaquin Phoenix
</a>
,
<a href="/name/nm0001567/">
Connie Nielsen
</a>
,
<a href="/name/nm0001657/">
Oliver Reed
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1392644" name="nv">
1,392,644
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="187,705,427" name="nv">
$187.71M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0120586">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0120586/">
<img alt="American History X" class="loadlate" data-tconst="tt0120586" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZTJhN2FkYWEtMGI0My00YWM4LWI2MjAtM2UwNjY4MTI2ZTQyXkEyXkFqcGdeQXVyNjc3MjQzNTI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
43.
</span>
<a href="/title/tt0120586/">
American History X
</a>
<span class="lister-item-year text-muted unbold">
(1998)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
R
</span>
<span class="ghost">
|
</span>
<span class="runtime">
119 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0120586" id="urv_tt0120586">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0120586">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0120586|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,063,743 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1063743" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0120586/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
62
</span>
Metascore
</div>
</div>
<p class="text-muted">
A former neo-nazi skinhead tries to prevent his younger brother from going down the same wrong path that he did.
</p>
<p class="">
Director:
<a href="/name/nm0443411/">
Tony Kaye
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0001570/">
Edward Norton
</a>
,
<a href="/name/nm0000411/">
Edward Furlong
</a>
,
<a href="/name/nm0000350/">
Beverly D'Angelo
</a>
,
<a href="/name/nm0000497/">
Jennifer Lien
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1063743" name="nv">
1,063,743
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="6,719,864" name="nv">
$6.72M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0114814">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0114814/">
<img alt="The Usual Suspects" class="loadlate" data-tconst="tt0114814" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYTViNjMyNmUtNDFkNC00ZDRlLThmMDUtZDU2YWE4NGI2ZjVmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
44.
</span>
<a href="/title/tt0114814/">
The Usual Suspects
</a>
<span class="lister-item-year text-muted unbold">
(1995)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
106 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Mystery, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0114814" id="urv_tt0114814">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0114814">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0114814|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,024,883 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1024883" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0114814/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
77
</span>
Metascore
</div>
</div>
<p class="text-muted">
A sole survivor tells of the twisty events leading up to a horrific gun battle on a boat, which began when five criminals met at a seemingly random police lineup.
</p>
<p class="">
Director:
<a href="/name/nm0001741/">
Bryan Singer
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000228/">
Kevin Spacey
</a>
,
<a href="/name/nm0000321/">
Gabriel Byrne
</a>
,
<a href="/name/nm0001590/">
Chazz Palminteri
</a>
,
<a href="/name/nm0000286/">
Stephen Baldwin
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1024883" name="nv">
1,024,883
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="23,341,568" name="nv">
$23.34M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0110413">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0110413/">
<img alt="Léon" class="loadlate" data-tconst="tt0110413" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BODllNWE0MmEtYjUwZi00ZjY3LThmNmQtZjZlMjI2YTZjYmQ0XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
45.
</span>
<a href="/title/tt0110413/">
Léon
</a>
<span class="lister-item-year text-muted unbold">
(1994)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
110 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0110413" id="urv_tt0110413">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0110413">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0110413|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,076,552 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1076552" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0110413/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
64
</span>
Metascore
</div>
</div>
<p class="text-muted">
Mathilda, a 12-year-old girl, is reluctantly taken in by Léon, a professional assassin, after her family is murdered. An unusual relationship forms as she becomes his protégée and learns the assassin's trade.
</p>
<p class="">
Director:
<a href="/name/nm0000108/">
Luc Besson
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000606/">
Jean Reno
</a>
,
<a href="/name/nm0000198/">
Gary Oldman
</a>
,
<a href="/name/nm0000204/">
Natalie Portman
</a>
,
<a href="/name/nm0000732/">
Danny Aiello
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1076552" name="nv">
1,076,552
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="19,501,238" name="nv">
$19.50M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0110357">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0110357/">
<img alt="The Lion King" class="loadlate" data-tconst="tt0110357" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYTYxNGMyZTYtMjE3MS00MzNjLWFjNmYtMDk3N2FmM2JiM2M1XkEyXkFqcGdeQXVyNjY5NDU4NzI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
46.
</span>
<a href="/title/tt0110357/">
The Lion King
</a>
<span class="lister-item-year text-muted unbold">
(1994)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
88 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Adventure, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0110357" id="urv_tt0110357">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0110357">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0110357|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (979,275 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="979275" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0110357/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
88
</span>
Metascore
</div>
</div>
<p class="text-muted">
Lion prince Simba and his father are targeted by his bitter uncle, who wants to ascend the throne himself.
</p>
<p class="">
Directors:
<a href="/name/nm0021249/">
Roger Allers
</a>
,
<a href="/name/nm0591450/">
Rob Minkoff
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000111/">
Matthew Broderick
</a>
,
<a href="/name/nm0000460/">
Jeremy Irons
</a>
,
<a href="/name/nm0000469/">
James Earl Jones
</a>
,
<a href="/name/nm0000155/">
Whoopi Goldberg
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="979275" name="nv">
979,275
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="422,783,777" name="nv">
$422.78M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0103064">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0103064/">
<img alt="Terminator 2: Judgment Day" class="loadlate" data-tconst="tt0103064" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMGU2NzRmZjUtOGUxYS00ZjdjLWEwZWItY2NlM2JhNjkxNTFmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
47.
</span>
<a href="/title/tt0103064/">
Terminator 2: Judgment Day
</a>
<span class="lister-item-year text-muted unbold">
(1991)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
137 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0103064" id="urv_tt0103064">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0103064">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0103064|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,029,811 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1029811" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0103064/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
75
</span>
Metascore
</div>
</div>
<p class="text-muted">
A cyborg, identical to the one who failed to kill Sarah Connor, must now protect her ten year old son, John Connor, from a more advanced and powerful cyborg.
</p>
<p class="">
Director:
<a href="/name/nm0000116/">
James Cameron
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000216/">
Arnold Schwarzenegger
</a>
,
<a href="/name/nm0000157/">
Linda Hamilton
</a>
,
<a href="/name/nm0000411/">
Edward Furlong
</a>
,
<a href="/name/nm0001598/">
Robert Patrick
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1029811" name="nv">
1,029,811
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="204,843,350" name="nv">
$204.84M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0095765">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0095765/">
<img alt="Nuovo Cinema Paradiso" class="loadlate" data-tconst="tt0095765" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BM2FhYjEyYmYtMDI1Yy00YTdlLWI2NWQtYmEzNzAxOGY1NjY2XkEyXkFqcGdeQXVyNTA3NTIyNDg@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
48.
</span>
<a href="/title/tt0095765/">
Nuovo Cinema Paradiso
</a>
<span class="lister-item-year text-muted unbold">
(1988)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
155 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0095765" id="urv_tt0095765">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0095765">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0095765|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (243,828 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="243828" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0095765/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
80
</span>
Metascore
</div>
</div>
<p class="text-muted">
A filmmaker recalls his childhood when falling in love with the pictures at the cinema of his home village and forms a deep friendship with the cinema's projectionist.
</p>
<p class="">
Director:
<a href="/name/nm0868153/">
Giuseppe Tornatore
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0634159/">
Philippe Noiret
</a>
,
<a href="/name/nm0134073/">
Enzo Cannavale
</a>
,
<a href="/name/nm0041066/">
Antonella Attili
</a>
,
<a href="/name/nm0199774/">
Isa Danieli
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="243828" name="nv">
243,828
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="11,990,401" name="nv">
$11.99M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0095327">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0095327/">
<img alt="Hotaru no haka" class="loadlate" data-tconst="tt0095327" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZmY2NjUzNDQtNTgxNC00M2Q4LTljOWQtMjNjNDBjNWUxNmJlXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
49.
</span>
<a href="/title/tt0095327/">
Hotaru no haka
</a>
<span class="lister-item-year text-muted unbold">
(1988)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
89 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Drama, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0095327" id="urv_tt0095327">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0095327">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0095327|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (250,817 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="250817" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0095327/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
94
</span>
Metascore
</div>
</div>
<p class="text-muted">
A young boy and his little sister struggle to survive in Japan during World War II.
</p>
<p class="">
Director:
<a href="/name/nm0847223/">
Isao Takahata
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0851302/">
Tsutomu Tatsumi
</a>
,
<a href="/name/nm0794186/">
Ayano Shiraishi
</a>
,
<a href="/name/nm0945312/">
Akemi Yamaguchi
</a>
,
<a href="/name/nm0794002/">
Yoshiko Shinohara
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="250817" name="nv">
250,817
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0088763">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0088763/">
<img alt="Back to the Future" class="loadlate" data-tconst="tt0088763" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZmU0M2Y1OGUtZjIxNi00ZjBkLTg1MjgtOWIyNThiZWIwYjRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
50.
</span>
<a href="/title/tt0088763/">
Back to the Future
</a>
<span class="lister-item-year text-muted unbold">
(1985)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
116 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Adventure, Comedy, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0088763" id="urv_tt0088763">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0088763">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0088763|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (1,107,284 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1107284" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0088763/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
87
</span>
Metascore
</div>
</div>
<p class="text-muted">
Marty McFly, a 17-year-old high school student, is accidentally sent thirty years into the past in a time-traveling DeLorean invented by his close friend, the eccentric scientist Doc Brown.
</p>
<p class="">
Director:
<a href="/name/nm0000709/">
Robert Zemeckis
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000150/">
Michael J. Fox
</a>
,
<a href="/name/nm0000502/">
Christopher Lloyd
</a>
,
<a href="/name/nm0000670/">
Lea Thompson
</a>
,
<a href="/name/nm0000417/">
Crispin Glover
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1107284" name="nv">
1,107,284
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="210,609,762" name="nv">
$210.61M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0064116">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0064116/">
<img alt="Once Upon a Time in the West" class="loadlate" data-tconst="tt0064116" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZGI5MjBmYzYtMzJhZi00NGI1LTk3MzItYjBjMzcxM2U3MDdiXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
51.
</span>
<a href="/title/tt0064116/">
Once Upon a Time in the West
</a>
<span class="lister-item-year text-muted unbold">
(1968)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
165 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Western
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0064116" id="urv_tt0064116">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0064116">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0064116|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (313,169 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="313169" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0064116/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
80
</span>
Metascore
</div>
</div>
<p class="text-muted">
A mysterious stranger with a harmonica joins forces with a notorious desperado to protect a beautiful widow from a ruthless assassin working for the railroad.
</p>
<p class="">
Director:
<a href="/name/nm0001466/">
Sergio Leone
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000020/">
Henry Fonda
</a>
,
<a href="/name/nm0000314/">
Charles Bronson
</a>
,
<a href="/name/nm0001012/">
Claudia Cardinale
</a>
,
<a href="/name/nm0001673/">
Jason Robards
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="313169" name="nv">
313,169
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="5,321,508" name="nv">
$5.32M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0054215">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0054215/">
<img alt="Psycho" class="loadlate" data-tconst="tt0054215" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNTQwNDM1YzItNDAxZC00NWY2LTk0M2UtNDIwNWI5OGUyNWUxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
52.
</span>
<a href="/title/tt0054215/">
Psycho
</a>
<span class="lister-item-year text-muted unbold">
(1960)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
109 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Horror, Mystery, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0054215" id="urv_tt0054215">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0054215">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0054215|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (627,600 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="627600" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0054215/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
97
</span>
Metascore
</div>
</div>
<p class="text-muted">
A Phoenix secretary embezzles $40,000 from her employer's client, goes on the run, and checks into a remote motel run by a young man under the domination of his mother.
</p>
<p class="">
Director:
<a href="/name/nm0000033/">
Alfred Hitchcock
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000578/">
Anthony Perkins
</a>
,
<a href="/name/nm0001463/">
Janet Leigh
</a>
,
<a href="/name/nm0587256/">
Vera Miles
</a>
,
<a href="/name/nm0001260/">
John Gavin
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="627600" name="nv">
627,600
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="32,000,000" name="nv">
$32.00M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0048473">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0048473/">
<img alt="Pather Panchali" class="loadlate" data-tconst="tt0048473" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNDE5YmMxYjEtZjNjNC00NjM2LWE2ZjctOTkyNGMxODRiMGNiXkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
53.
</span>
<a href="/title/tt0048473/">
Pather Panchali
</a>
<span class="lister-item-year text-muted unbold">
(1955)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
125 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0048473" id="urv_tt0048473">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0048473">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0048473|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (27,905 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="27905" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0048473/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
Impoverished priest Harihar Ray, dreaming of a better life for himself and his family, leaves his rural Bengal village in search of work.
</p>
<p class="">
Director:
<a href="/name/nm0006249/">
Satyajit Ray
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0052333/">
Kanu Bannerjee
</a>
,
<a href="/name/nm0052334/">
Karuna Bannerjee
</a>
,
<a href="/name/nm0052343/">
Subir Banerjee
</a>
,
<a href="/name/nm0222447/">
Chunibala Devi
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="27905" name="nv">
27,905
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="536,364" name="nv">
$0.54M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0047396">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0047396/">
<img alt="Rear Window" class="loadlate" data-tconst="tt0047396" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNGUxYWM3M2MtMGM3Mi00ZmRiLWE0NGQtZjE5ODI2OTJhNTU0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
54.
</span>
<a href="/title/tt0047396/">
Rear Window
</a>
<span class="lister-item-year text-muted unbold">
(1954)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
112 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Mystery, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0047396" id="urv_tt0047396">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0047396">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0047396|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (462,920 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="462920" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0047396/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
100
</span>
Metascore
</div>
</div>
<p class="text-muted">
A wheelchair-bound photographer spies on his neighbors from his apartment window and becomes convinced one of them has committed murder.
</p>
<p class="">
Director:
<a href="/name/nm0000033/">
Alfred Hitchcock
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000071/">
James Stewart
</a>
,
<a href="/name/nm0000038/">
Grace Kelly
</a>
,
<a href="/name/nm0179819/">
Wendell Corey
</a>
,
<a href="/name/nm0728812/">
Thelma Ritter
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="462920" name="nv">
462,920
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="36,764,313" name="nv">
$36.76M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0034583">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0034583/">
<img alt="Casablanca" class="loadlate" data-tconst="tt0034583" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BY2IzZGY2YmEtYzljNS00NTM5LTgwMzUtMzM1NjQ4NGI0OTk0XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
55.
</span>
<a href="/title/tt0034583/">
Casablanca
</a>
<span class="lister-item-year text-muted unbold">
(1942)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
102 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0034583" id="urv_tt0034583">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0034583">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0034583|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (540,759 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="540759" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0034583/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
100
</span>
Metascore
</div>
</div>
<p class="text-muted">
A cynical expatriate American cafe owner struggles to decide whether or not to help his former lover and her fugitive husband escape the Nazis in French Morocco.
</p>
<p class="">
Director:
<a href="/name/nm0002031/">
Michael Curtiz
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000007/">
Humphrey Bogart
</a>
,
<a href="/name/nm0000006/">
Ingrid Bergman
</a>
,
<a href="/name/nm0002134/">
Paul Henreid
</a>
,
<a href="/name/nm0001647/">
Claude Rains
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="540759" name="nv">
540,759
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,024,560" name="nv">
$1.02M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0027977">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0027977/">
<img alt="Modern Times" class="loadlate" data-tconst="tt0027977" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYjJiZjMzYzktNjU0NS00OTkxLWEwYzItYzdhYWJjN2QzMTRlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
56.
</span>
<a href="/title/tt0027977/">
Modern Times
</a>
<span class="lister-item-year text-muted unbold">
(1936)
</span>
</h3>
<p class="text-muted">
<span class="runtime">
87 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Family
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0027977" id="urv_tt0027977">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0027977">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0027977|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (227,552 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="227552" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0027977/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
96
</span>
Metascore
</div>
</div>
<p class="text-muted">
The Tramp struggles to live in modern industrial society with the help of a young homeless woman.
</p>
<p class="">
Director:
<a href="/name/nm0000122/">
Charles Chaplin
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000122/">
Charles Chaplin
</a>
,
<a href="/name/nm0002104/">
Paulette Goddard
</a>
,
<a href="/name/nm0074788/">
Henry Bergman
</a>
,
<a href="/name/nm0761866/">
Tiny Sandford
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="227552" name="nv">
227,552
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="163,245" name="nv">
$0.16M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0021749">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0021749/">
<img alt="City Lights" class="loadlate" data-tconst="tt0021749" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BY2I4MmM1N2EtM2YzOS00OWUzLTkzYzctNDc5NDg2N2IyODJmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
57.
</span>
<a href="/title/tt0021749/">
City Lights
</a>
<span class="lister-item-year text-muted unbold">
(1931)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
G
</span>
<span class="ghost">
|
</span>
<span class="runtime">
87 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.5" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.5
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0021749" id="urv_tt0021749">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0021749">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0021749|imdb|8.5|8.5|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.5/10 (175,114 votes) - click stars to rate">
<meta content="8.5" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="175114" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 119px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.5
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0021749/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
99
</span>
Metascore
</div>
</div>
<p class="text-muted">
With the aid of a wealthy erratic tippler, a dewy-eyed tramp who has fallen in love with a sightless flower girl accumulates money to be able to help her medically.
</p>
<p class="">
Director:
<a href="/name/nm0000122/">
Charles Chaplin
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000122/">
Charles Chaplin
</a>
,
<a href="/name/nm0156039/">
Virginia Cherrill
</a>
,
<a href="/name/nm5681967/">
Florence Lee
</a>
,
<a href="/name/nm0616729/">
Harry Myers
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="175114" name="nv">
175,114
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="19,181" name="nv">
$0.02M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt8503618">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt8503618/">
<img alt="Hamilton" class="loadlate" data-tconst="tt8503618" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNjViNWRjYWEtZTI0NC00N2E3LTk0NGQtMjY4NTM3OGNkZjY0XkEyXkFqcGdeQXVyMjUxMTY3ODM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
58.
</span>
<a href="/title/tt8503618/">
Hamilton
</a>
<span class="lister-item-year text-muted unbold">
(2020)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
12+
</span>
<span class="ghost">
|
</span>
<span class="runtime">
160 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Biography, Drama, History
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt8503618" id="urv_tt8503618">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt8503618">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt8503618|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (72,031 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="72031" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt8503618/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
90
</span>
Metascore
</div>
</div>
<p class="text-muted">
The real life of one of America's foremost founding fathers and first Secretary of the Treasury, Alexander Hamilton. Captured live on Broadway from the Richard Rodgers Theater with the original Broadway cast.
</p>
<p class="">
Director:
<a href="/name/nm2371802/">
Thomas Kail
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0592135/">
Lin-Manuel Miranda
</a>
,
<a href="/name/nm5623883/">
Phillipa Soo
</a>
,
<a href="/name/nm1502434/">
Leslie Odom Jr.
</a>
,
<a href="/name/nm0325989/">
Renée Elise Goldsberry
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="72031" name="nv">
72,031
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt8267604">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt8267604/">
<img alt="Capharnaüm" class="loadlate" data-tconst="tt8267604" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMmExNzU2ZWMtYzUwYi00YmM2LTkxZTQtNmVhNjY0NTMyMWI2XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
59.
</span>
<a href="/title/tt8267604/">
Capharnaüm
</a>
<span class="lister-item-year text-muted unbold">
(2018)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
126 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt8267604" id="urv_tt8267604">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt8267604">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt8267604|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (73,703 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="73703" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt8267604/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
75
</span>
Metascore
</div>
</div>
<p class="text-muted">
While serving a five-year sentence for a violent crime, a 12-year-old boy sues his parents for neglect.
</p>
<p class="">
Director:
<a href="/name/nm1701024/">
Nadine Labaki
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm9862858/">
Zain Al Rafeea
</a>
,
<a href="/name/nm9862859/">
Yordanos Shiferaw
</a>
,
<a href="/name/nm9862860/">
Boluwatife Treasure Bankole
</a>
,
<a href="/name/nm10201625/">
Kawsar Al Haddad
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="73682" name="nv">
73,682
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,661,096" name="nv">
$1.66M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt7286456">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt7286456/">
<img alt="Joker" class="loadlate" data-tconst="tt7286456" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNGVjNWI4ZGUtNzE0MS00YTJmLWE0ZDctN2ZiYTk2YmI3NTYyXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
60.
</span>
<a href="/title/tt7286456/">
Joker
</a>
<span class="lister-item-year text-muted unbold">
(2019)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
122 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt7286456" id="urv_tt7286456">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt7286456">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt7286456|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (1,054,292 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1054292" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt7286456/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">
59
</span>
Metascore
</div>
</div>
<p class="text-muted">
In Gotham City, mentally troubled comedian Arthur Fleck is disregarded and mistreated by society. He then embarks on a downward spiral of revolution and bloody crime. This path brings him face-to-face with his alter-ego: the Joker.
</p>
<p class="">
Director:
<a href="/name/nm0680846/">
Todd Phillips
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0001618/">
Joaquin Phoenix
</a>
,
<a href="/name/nm0000134/">
Robert De Niro
</a>
,
<a href="/name/nm5939164/">
Zazie Beetz
</a>
,
<a href="/name/nm0175814/">
Frances Conroy
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1054292" name="nv">
1,054,292
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="335,451,311" name="nv">
$335.45M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt6316138">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt6316138/">
<img alt="Ayla: The Daughter of War" class="loadlate" data-tconst="tt6316138" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZjE2NGYwMGQtOWE4MC00NTFjLTk3YTgtMWI5ZmZlMzUyYzExXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
61.
</span>
<a href="/title/tt6316138/">
Ayla: The Daughter of War
</a>
<span class="lister-item-year text-muted unbold">
(2017)
</span>
</h3>
<p class="text-muted">
<span class="runtime">
125 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Biography, Drama, History
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt6316138" id="urv_tt6316138">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt6316138">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt6316138|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (36,813 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="36813" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt6316138/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
In 1950, amid-st the ravages of the Korean War, Sergeant Süleyman stumbles upon a half-frozen little girl, with no parents and no help in sight. Frantic, scared and on the verge of death, ...
<a href="/title/tt6316138/plotsummary">
See full summary
</a>
»
</p>
<p class="">
Directors:
<a href="/name/nm8631915/">
Can Ulkay
</a>
,
<a href="/name/nm7073474/">
Halenur Uzunoglu
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1002038/">
Çetin Tekindor
</a>
,
<a href="/name/nm1385304/">
Ismail Hacioglu
</a>
,
<a href="/name/nm2349707/">
Kyung-jin Lee
</a>
,
<a href="/name/nm8932809/">
Kim Seol
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="36813" name="nv">
36,813
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt6148156">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt6148156/">
<img alt="Vikram Vedha" class="loadlate" data-tconst="tt6148156" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BY2FiMTFmMzMtZDI2ZC00NDQyLWExYTUtOWNmZWM1ZDg5YjVjXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
62.
</span>
<a href="/title/tt6148156/">
Vikram Vedha
</a>
<span class="lister-item-year text-muted unbold">
(2017)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
147 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt6148156" id="urv_tt6148156">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt6148156">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt6148156|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (33,140 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="33140" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt6148156/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
Vikram, a no-nonsense police officer, accompanied by Simon, his partner, is on the hunt to capture Vedha, a smuggler and a murderer. Vedha tries to change Vikram's life, which leads to a conflict.
</p>
<p class="">
Directors:
<a href="/name/nm2566836/">
Gayatri
</a>
,
<a href="/name/nm2575525/">
Pushkar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0534856/">
Madhavan
</a>
,
<a href="/name/nm4043111/">
Vijay Sethupathi
</a>
,
<a href="/name/nm7744845/">
Shraddha Srinath
</a>
,
<a href="/name/nm6453091/">
Kathir
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="33140" name="nv">
33,140
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt5311514">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt5311514/">
<img alt="Kimi no na wa." class="loadlate" data-tconst="tt5311514" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BODRmZDVmNzUtZDA4ZC00NjhkLWI2M2UtN2M0ZDIzNDcxYThjL2ltYWdlXkEyXkFqcGdeQXVyNTk0MzMzODA@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
63.
</span>
<a href="/title/tt5311514/">
Kimi no na wa.
</a>
<span class="lister-item-year text-muted unbold">
(2016)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
106 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Drama, Fantasy
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt5311514" id="urv_tt5311514">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt5311514">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt5311514|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (221,557 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="221557" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt5311514/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
79
</span>
Metascore
</div>
</div>
<p class="text-muted">
Two strangers find themselves linked in a bizarre way. When a connection forms, will distance be the only thing to keep them apart?
</p>
<p class="">
Director:
<a href="/name/nm1396121/">
Makoto Shinkai
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1126340/">
Ryûnosuke Kamiki
</a>
,
<a href="/name/nm4759838/">
Mone Kamishiraishi
</a>
,
<a href="/name/nm6954008/">
Ryô Narita
</a>
,
<a href="/name/nm2976492/">
Aoi Yûki
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="221557" name="nv">
221,557
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="5,017,246" name="nv">
$5.02M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt5074352">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt5074352/">
<img alt="Dangal" class="loadlate" data-tconst="tt5074352" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTQ4MzQzMzM2Nl5BMl5BanBnXkFtZTgwMTQ1NzU3MDI@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
64.
</span>
<a href="/title/tt5074352/">
Dangal
</a>
<span class="lister-item-year text-muted unbold">
(2016)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
161 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Biography, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt5074352" id="urv_tt5074352">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt5074352">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt5074352|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (169,965 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="169965" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt5074352/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
Former wrestler
<a href="/name/nm10059137">
Mahavir Singh Phogat
</a>
and his two wrestler daughters struggle towards glory at the Commonwealth Games in the face of societal oppression.
</p>
<p class="">
Director:
<a href="/name/nm4318159/">
Nitesh Tiwari
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm2799219/">
Sakshi Tanwar
</a>
,
<a href="/name/nm0760778/">
Fatima Sana Shaikh
</a>
,
<a href="/name/nm7621667/">
Sanya Malhotra
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="169965" name="nv">
169,965
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="12,391,761" name="nv">
$12.39M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt4633694">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt4633694/">
<img alt="Spider-Man: Into the Spider-Verse" class="loadlate" data-tconst="tt4633694" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjMwNDkxMTgzOF5BMl5BanBnXkFtZTgwNTkwNTQ3NjM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
65.
</span>
<a href="/title/tt4633694/">
Spider-Man: Into the Spider-Verse
</a>
<span class="lister-item-year text-muted unbold">
(2018)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
117 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Action, Adventure
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt4633694" id="urv_tt4633694">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt4633694">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt4633694|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (421,506 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="421506" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt4633694/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
87
</span>
Metascore
</div>
</div>
<p class="text-muted">
Teen Miles Morales becomes the Spider-Man of his universe, and must join with five spider-powered individuals from other dimensions to stop a threat for all realities.
</p>
<p class="">
Directors:
<a href="/name/nm2130108/">
Bob Persichetti
</a>
,
<a href="/name/nm0709056/">
Peter Ramsey
</a>
,
<a href="/name/nm0745247/">
Rodney Rothman
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm4271336/">
Shameik Moore
</a>
,
<a href="/name/nm2159926/">
Jake Johnson
</a>
,
<a href="/name/nm2794962/">
Hailee Steinfeld
</a>
,
<a href="/name/nm0991810/">
Mahershala Ali
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="421506" name="nv">
421,506
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="190,241,310" name="nv">
$190.24M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt4154796">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt4154796/">
<img alt="Avengers: Endgame" class="loadlate" data-tconst="tt4154796" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTc5MDE2ODcwNV5BMl5BanBnXkFtZTgwMzI2NzQ2NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
66.
</span>
<a href="/title/tt4154796/">
Avengers: Endgame
</a>
<span class="lister-item-year text-muted unbold">
(2019)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
181 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt4154796" id="urv_tt4154796">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt4154796">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt4154796|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (927,695 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="927695" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt4154796/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
78
</span>
Metascore
</div>
</div>
<p class="text-muted">
After the devastating events of
<a href="/title/tt4154756">
Avengers: Infinity War
</a>
(2018), the universe is in ruins. With the help of remaining allies, the Avengers assemble once more in order to reverse Thanos' actions and restore balance to the universe.
</p>
<p class="">
Directors:
<a href="/name/nm0751577/">
Anthony Russo
</a>
,
<a href="/name/nm0751648/">
Joe Russo
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000375/">
Robert Downey Jr.
</a>
,
<a href="/name/nm0262635/">
Chris Evans
</a>
,
<a href="/name/nm0749263/">
Mark Ruffalo
</a>
,
<a href="/name/nm1165110/">
Chris Hemsworth
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="927695" name="nv">
927,695
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="858,373,000" name="nv">
$858.37M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt4154756">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt4154756/">
<img alt="Avengers: Infinity War" class="loadlate" data-tconst="tt4154756" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjMxNjY2MDU1OV5BMl5BanBnXkFtZTgwNzY1MTUwNTM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
67.
</span>
<a href="/title/tt4154756/">
Avengers: Infinity War
</a>
<span class="lister-item-year text-muted unbold">
(2018)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
149 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt4154756" id="urv_tt4154756">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt4154756">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt4154756|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (915,257 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="915257" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt4154756/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
68
</span>
Metascore
</div>
</div>
<p class="text-muted">
The Avengers and their allies must be willing to sacrifice all in an attempt to defeat the powerful Thanos before his blitz of devastation and ruin puts an end to the universe.
</p>
<p class="">
Directors:
<a href="/name/nm0751577/">
Anthony Russo
</a>
,
<a href="/name/nm0751648/">
Joe Russo
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000375/">
Robert Downey Jr.
</a>
,
<a href="/name/nm1165110/">
Chris Hemsworth
</a>
,
<a href="/name/nm0749263/">
Mark Ruffalo
</a>
,
<a href="/name/nm0262635/">
Chris Evans
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="915257" name="nv">
915,257
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="678,815,482" name="nv">
$678.82M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt2380307">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt2380307/">
<img alt="Coco" class="loadlate" data-tconst="tt2380307" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYjQ5NjM0Y2YtNjZkNC00ZDhkLWJjMWItN2QyNzFkMDE3ZjAxXkEyXkFqcGdeQXVyODIxMzk5NjA@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
68.
</span>
<a href="/title/tt2380307/">
Coco
</a>
<span class="lister-item-year text-muted unbold">
(I) (2017)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
105 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Adventure, Comedy
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt2380307" id="urv_tt2380307">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt2380307">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt2380307|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (427,220 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="427220" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt2380307/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
81
</span>
Metascore
</div>
</div>
<p class="text-muted">
Aspiring musician Miguel, confronted with his family's ancestral ban on music, enters the Land of the Dead to find his great-great-grandfather, a legendary singer.
</p>
<p class="">
Directors:
<a href="/name/nm0881279/">
Lee Unkrich
</a>
,
<a href="/name/nm2937122/">
Adrian Molina
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm5645519/">
Anthony Gonzalez
</a>
,
<a href="/name/nm0305558/">
Gael García Bernal
</a>
,
<a href="/name/nm0000973/">
Benjamin Bratt
</a>
,
<a href="/name/nm0005513/">
Alanna Ubach
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="427220" name="nv">
427,220
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="209,726,015" name="nv">
$209.73M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt1853728">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt1853728/">
<img alt="Django Unchained" class="loadlate" data-tconst="tt1853728" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjIyNTQ5NjQ1OV5BMl5BanBnXkFtZTcwODg1MDU4OA@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
69.
</span>
<a href="/title/tt1853728/">
Django Unchained
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
165 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Western
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt1853728" id="urv_tt1853728">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt1853728">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt1853728|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (1,419,082 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1419082" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt1853728/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
81
</span>
Metascore
</div>
</div>
<p class="text-muted">
With the help of a German bounty-hunter, a freed slave sets out to rescue his wife from a brutal plantation-owner in Mississippi.
</p>
<p class="">
Director:
<a href="/name/nm0000233/">
Quentin Tarantino
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004937/">
Jamie Foxx
</a>
,
<a href="/name/nm0910607/">
Christoph Waltz
</a>
,
<a href="/name/nm0000138/">
Leonardo DiCaprio
</a>
,
<a href="/name/nm0913488/">
Kerry Washington
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1419082" name="nv">
1,419,082
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="162,805,434" name="nv">
$162.81M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt1345836">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt1345836/">
<img alt="The Dark Knight Rises" class="loadlate" data-tconst="tt1345836" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
70.
</span>
<a href="/title/tt1345836/">
The Dark Knight Rises
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
164 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt1345836" id="urv_tt1345836">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt1345836">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt1345836|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (1,571,404 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1571404" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt1345836/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
78
</span>
Metascore
</div>
</div>
<p class="text-muted">
Eight years after the Joker's reign of anarchy, Batman, with the help of the enigmatic Catwoman, is forced from his exile to save Gotham City from the brutal guerrilla terrorist Bane.
</p>
<p class="">
Director:
<a href="/name/nm0634240/">
Christopher Nolan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000288/">
Christian Bale
</a>
,
<a href="/name/nm0362766/">
Tom Hardy
</a>
,
<a href="/name/nm0004266/">
Anne Hathaway
</a>
,
<a href="/name/nm0000198/">
Gary Oldman
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1571313" name="nv">
1,571,313
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="448,139,099" name="nv">
$448.14M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt1187043">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt1187043/">
<img alt="3 Idiots" class="loadlate" data-tconst="tt1187043" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNTkyOGVjMGEtNmQzZi00NzFlLTlhOWQtODYyMDc2ZGJmYzFhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
71.
</span>
<a href="/title/tt1187043/">
3 Idiots
</a>
<span class="lister-item-year text-muted unbold">
(2009)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
170 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt1187043" id="urv_tt1187043">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt1187043">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt1187043|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (365,666 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="365666" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt1187043/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
67
</span>
Metascore
</div>
</div>
<p class="text-muted">
Two friends are searching for their long lost companion. They revisit their college days and recall the memories of their friend who inspired them to think differently, even as the rest of the world called them "idiots".
</p>
<p class="">
Director:
<a href="/name/nm0386246/">
Rajkumar Hirani
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0534856/">
Madhavan
</a>
,
<a href="/name/nm1587175/">
Mona Singh
</a>
,
<a href="/name/nm0430817/">
Sharman Joshi
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="365666" name="nv">
365,666
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="6,532,908" name="nv">
$6.53M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0986264">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0986264/">
<img alt="Taare Zameen Par" class="loadlate" data-tconst="tt0986264" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMDhjZWViN2MtNzgxOS00NmI4LThiZDQtZDI3MzM4MDE4NTc0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
72.
</span>
<a href="/title/tt0986264/">
Taare Zameen Par
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
165 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Family
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0986264" id="urv_tt0986264">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0986264">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0986264|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (179,671 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="179671" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0986264/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
An eight-year-old boy is thought to be a lazy trouble-maker, until the new art teacher has the patience and compassion to discover the real problem behind his struggles in school.
</p>
<p class="">
Directors:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm1244760/">
Amole Gupte
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm2594301/">
Darsheel Safary
</a>
,
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm1538116/">
Tisca Chopra
</a>
,
<a href="/name/nm1479650/">
Vipin Sharma
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="179671" name="nv">
179,671
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,223,869" name="nv">
$1.22M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0910970">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0910970/">
<img alt="WALL·E" class="loadlate" data-tconst="tt0910970" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjExMTg5OTU0NF5BMl5BanBnXkFtZTcwMjMxMzMzMw@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
73.
</span>
<a href="/title/tt0910970/">
WALL·E
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
98 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Adventure, Family
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0910970" id="urv_tt0910970">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0910970">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0910970|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (1,038,177 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1038177" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0910970/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
95
</span>
Metascore
</div>
</div>
<p class="text-muted">
In the distant future, a small waste-collecting robot inadvertently embarks on a space journey that will ultimately decide the fate of mankind.
</p>
<p class="">
Director:
<a href="/name/nm0004056/">
Andrew Stanton
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0123785/">
Ben Burtt
</a>
,
<a href="/name/nm2264184/">
Elissa Knight
</a>
,
<a href="/name/nm0307531/">
Jeff Garlin
</a>
,
<a href="/name/nm0929609/">
Fred Willard
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1038177" name="nv">
1,038,177
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="223,808,164" name="nv">
$223.81M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0405094">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0405094/">
<img alt="The Lives of Others" class="loadlate" data-tconst="tt0405094" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOThkM2EzYmMtNDE3NS00NjlhLTg4YzktYTdhNzgyOWY3ZDYzXkEyXkFqcGdeQXVyNzQzNzQxNzI@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
74.
</span>
<a href="/title/tt0405094/">
The Lives of Others
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
137 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Mystery, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0405094" id="urv_tt0405094">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0405094">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0405094|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (371,251 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="371251" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0405094/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
89
</span>
Metascore
</div>
</div>
<p class="text-muted">
In 1984 East Berlin, an agent of the secret police, conducting surveillance on a writer and his lover, finds himself becoming increasingly absorbed by their lives.
</p>
<p class="">
Director:
<a href="/name/nm0003697/">
Florian Henckel von Donnersmarck
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0618057/">
Ulrich Mühe
</a>
,
<a href="/name/nm0311476/">
Martina Gedeck
</a>
,
<a href="/name/nm0462407/">
Sebastian Koch
</a>
,
<a href="/name/nm0876300/">
Ulrich Tukur
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="371251" name="nv">
371,251
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="11,286,112" name="nv">
$11.29M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0364569">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0364569/">
<img alt="Oldeuboi" class="loadlate" data-tconst="tt0364569" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTI3NTQyMzU5M15BMl5BanBnXkFtZTcwMTM2MjgyMQ@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
75.
</span>
<a href="/title/tt0364569/">
Oldeuboi
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
101 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Drama, Mystery
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0364569" id="urv_tt0364569">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0364569">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0364569|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (538,070 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="538070" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0364569/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
77
</span>
Metascore
</div>
</div>
<p class="text-muted">
After being kidnapped and imprisoned for fifteen years, Oh Dae-Su is released, only to find that he must find his captor in five days.
</p>
<p class="">
Director:
<a href="/name/nm0661791/">
Park Chan-Wook
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0158856/">
Choi Min-sik
</a>
,
<a href="/name/nm0949167/">
Yoo Ji-Tae
</a>
,
<a href="/name/nm1367246/">
Kang Hye-jeong
</a>
,
<a href="/name/nm1366028/">
Kim Byeong-Ok
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="538070" name="nv">
538,070
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="707,481" name="nv">
$0.71M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0209144">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0209144/">
<img alt="Memento" class="loadlate" data-tconst="tt0209144" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZTcyNjk1MjgtOWI3Mi00YzQwLWI5MTktMzY4ZmI2NDAyNzYzXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
76.
</span>
<a href="/title/tt0209144/">
Memento
</a>
<span class="lister-item-year text-muted unbold">
(2000)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
113 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Mystery, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0209144" id="urv_tt0209144">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0209144">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0209144|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (1,164,701 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="1164701" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0209144/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
80
</span>
Metascore
</div>
</div>
<p class="text-muted">
A man with short-term memory loss attempts to track down his wife's murderer.
</p>
<p class="">
Director:
<a href="/name/nm0634240/">
Christopher Nolan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0001602/">
Guy Pearce
</a>
,
<a href="/name/nm0005251/">
Carrie-Anne Moss
</a>
,
<a href="/name/nm0001592/">
Joe Pantoliano
</a>
,
<a href="/name/nm0095478/">
Mark Boone Junior
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="1164701" name="nv">
1,164,701
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="25,544,867" name="nv">
$25.54M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0119698">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0119698/">
<img alt="Mononoke-hime" class="loadlate" data-tconst="tt0119698" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNGIzY2IzODQtNThmMi00ZDE4LWI5YzAtNzNlZTM1ZjYyYjUyXkEyXkFqcGdeQXVyODEzNjM5OTQ@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
77.
</span>
<a href="/title/tt0119698/">
Mononoke-hime
</a>
<span class="lister-item-year text-muted unbold">
(1997)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
134 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Action, Adventure
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0119698" id="urv_tt0119698">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0119698">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0119698|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (362,664 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="362664" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0119698/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
76
</span>
Metascore
</div>
</div>
<p class="text-muted">
On a journey to find the cure for a Tatarigami's curse, Ashitaka finds himself in the middle of a war between the forest gods and Tatara, a mining colony. In this quest he also meets San, the Mononoke Hime.
</p>
<p class="">
Director:
<a href="/name/nm0594503/">
Hayao Miyazaki
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0559444/">
Yôji Matsuda
</a>
,
<a href="/name/nm0410942/">
Yuriko Ishida
</a>
,
<a href="/name/nm0849100/">
Yûko Tanaka
</a>
,
<a href="/name/nm0001082/">
Billy Crudup
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="362664" name="nv">
362,664
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="2,375,308" name="nv">
$2.38M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0087843">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0087843/">
<img alt="Once Upon a Time in America" class="loadlate" data-tconst="tt0087843" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMGFkNWI4MTMtNGQ0OC00MWVmLTk3MTktOGYxN2Y2YWVkZWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
78.
</span>
<a href="/title/tt0087843/">
Once Upon a Time in America
</a>
<span class="lister-item-year text-muted unbold">
(1984)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
229 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0087843" id="urv_tt0087843">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0087843">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0087843|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (326,109 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="326109" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0087843/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.
</p>
<p class="">
Director:
<a href="/name/nm0001466/">
Sergio Leone
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000134/">
Robert De Niro
</a>
,
<a href="/name/nm0000249/">
James Woods
</a>
,
<a href="/name/nm0001527/">
Elizabeth McGovern
</a>
,
<a href="/name/nm0001852/">
Treat Williams
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="326109" name="nv">
326,109
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="5,321,508" name="nv">
$5.32M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0082971">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0082971/">
<img alt="Raiders of the Lost Ark" class="loadlate" data-tconst="tt0082971" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMjA0ODEzMTc1Nl5BMl5BanBnXkFtZTcwODM2MjAxNA@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
79.
</span>
<a href="/title/tt0082971/">
Raiders of the Lost Ark
</a>
<span class="lister-item-year text-muted unbold">
(1981)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
115 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0082971" id="urv_tt0082971">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0082971">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0082971|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (913,756 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="913756" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0082971/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
85
</span>
Metascore
</div>
</div>
<p class="text-muted">
In 1936, archaeologist and adventurer Indiana Jones is hired by the U.S. government to find the Ark of the Covenant before
<a href="/name/nm0386944">
Adolf Hitler
</a>
's Nazis can obtain its awesome powers.
</p>
<p class="">
Director:
<a href="/name/nm0000229/">
Steven Spielberg
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000148/">
Harrison Ford
</a>
,
<a href="/name/nm0000261/">
Karen Allen
</a>
,
<a href="/name/nm0293550/">
Paul Freeman
</a>
,
<a href="/name/nm0722636/">
John Rhys-Davies
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="913756" name="nv">
913,756
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="248,159,971" name="nv">
$248.16M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0081505">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0081505/">
<img alt="The Shining" class="loadlate" data-tconst="tt0081505" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZWFlYmY2MGEtZjVkYS00YzU4LTg0YjQtYzY1ZGE3NTA5NGQxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
80.
</span>
<a href="/title/tt0081505/">
The Shining
</a>
<span class="lister-item-year text-muted unbold">
(1980)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
146 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Horror
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0081505" id="urv_tt0081505">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0081505">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0081505|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (937,495 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="937495" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0081505/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
66
</span>
Metascore
</div>
</div>
<p class="text-muted">
A family heads to an isolated hotel for the winter where a sinister presence influences the father into violence, while his psychic son sees horrific forebodings from both past and future.
</p>
<p class="">
Director:
<a href="/name/nm0000040/">
Stanley Kubrick
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000197/">
Jack Nicholson
</a>
,
<a href="/name/nm0001167/">
Shelley Duvall
</a>
,
<a href="/name/nm0515950/">
Danny Lloyd
</a>
,
<a href="/name/nm0001079/">
Scatman Crothers
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="937495" name="nv">
937,495
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="44,017,374" name="nv">
$44.02M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0078788">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0078788/">
<img alt="Apocalypse Now" class="loadlate" data-tconst="tt0078788" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMDdhODg0MjYtYzBiOS00ZmI5LWEwZGYtZDEyNDU4MmQyNzFkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
81.
</span>
<a href="/title/tt0078788/">
Apocalypse Now
</a>
<span class="lister-item-year text-muted unbold">
(1979)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
R
</span>
<span class="ghost">
|
</span>
<span class="runtime">
147 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Mystery, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0078788" id="urv_tt0078788">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0078788">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0078788|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (627,426 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="627426" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0078788/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
94
</span>
Metascore
</div>
</div>
<p class="text-muted">
A U.S. Army officer serving in Vietnam is tasked with assassinating a renegade Special Forces Colonel who sees himself as a god.
</p>
<p class="">
Director:
<a href="/name/nm0000338/">
Francis Ford Coppola
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000640/">
Martin Sheen
</a>
,
<a href="/name/nm0000008/">
Marlon Brando
</a>
,
<a href="/name/nm0000380/">
Robert Duvall
</a>
,
<a href="/name/nm0002078/">
Frederic Forrest
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="627426" name="nv">
627,426
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="83,471,511" name="nv">
$83.47M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0078748">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0078748/">
<img alt="Alien" class="loadlate" data-tconst="tt0078748" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMmQ2MmU3NzktZjAxOC00ZDZhLTk4YzEtMDMyMzcxY2IwMDAyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
82.
</span>
<a href="/title/tt0078748/">
Alien
</a>
<span class="lister-item-year text-muted unbold">
(1979)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
R
</span>
<span class="ghost">
|
</span>
<span class="runtime">
117 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Horror, Sci-Fi
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0078748" id="urv_tt0078748">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0078748">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0078748|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (819,451 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="819451" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0078748/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
89
</span>
Metascore
</div>
</div>
<p class="text-muted">
After a space merchant vessel receives an unknown transmission as a distress call, one of the crew is attacked by a mysterious life form and they soon realize that its life cycle has merely begun.
</p>
<p class="">
Director:
<a href="/name/nm0000631/">
Ridley Scott
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000244/">
Sigourney Weaver
</a>
,
<a href="/name/nm0000643/">
Tom Skerritt
</a>
,
<a href="/name/nm0000457/">
John Hurt
</a>
,
<a href="/name/nm0001021/">
Veronica Cartwright
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="819451" name="nv">
819,451
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="78,900,000" name="nv">
$78.90M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0057565">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0057565/">
<img alt="Tengoku to jigoku" class="loadlate" data-tconst="tt0057565" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOTI4NTNhZDMtMWNkZi00MTRmLWJmZDQtMmJkMGVmZTEzODlhXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
83.
</span>
<a href="/title/tt0057565/">
Tengoku to jigoku
</a>
<span class="lister-item-year text-muted unbold">
(1963)
</span>
</h3>
<p class="text-muted">
<span class="runtime">
143 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Mystery
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0057565" id="urv_tt0057565">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0057565">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0057565|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (39,036 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="39036" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0057565/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
An executive of a shoe company becomes a victim of extortion when his chauffeur's son is kidnapped and held for ransom.
</p>
<p class="">
Director:
<a href="/name/nm0000041/">
Akira Kurosawa
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0001536/">
Toshirô Mifune
</a>
,
<a href="/name/nm0755403/">
Yutaka Sada
</a>
,
<a href="/name/nm0619938/">
Tatsuya Nakadai
</a>
,
<a href="/name/nm0434593/">
Kyôko Kagawa
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="39036" name="nv">
39,036
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0057012">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0057012/">
<img alt="Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb" class="loadlate" data-tconst="tt0057012" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZWI3ZTMxNjctMjdlNS00NmUwLWFiM2YtZDUyY2I3N2MxYTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
84.
</span>
<a href="/title/tt0057012/">
Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb
</a>
<span class="lister-item-year text-muted unbold">
(1964)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
95 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0057012" id="urv_tt0057012">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0057012">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0057012|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (466,061 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="466061" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0057012/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
97
</span>
Metascore
</div>
</div>
<p class="text-muted">
An insane general triggers a path to nuclear holocaust that a War Room full of politicians and generals frantically tries to stop.
</p>
<p class="">
Director:
<a href="/name/nm0000040/">
Stanley Kubrick
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000634/">
Peter Sellers
</a>
,
<a href="/name/nm0001715/">
George C. Scott
</a>
,
<a href="/name/nm0001330/">
Sterling Hayden
</a>
,
<a href="/name/nm0943978/">
Keenan Wynn
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="466061" name="nv">
466,061
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="275,902" name="nv">
$0.28M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0051201">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0051201/">
<img alt="Witness for the Prosecution" class="loadlate" data-tconst="tt0051201" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNDQwODU5OWYtNDcyNi00MDQ1LThiOGMtZDkwNWJiM2Y3MDg0XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
85.
</span>
<a href="/title/tt0051201/">
Witness for the Prosecution
</a>
<span class="lister-item-year text-muted unbold">
(1957)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
116 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Mystery
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0051201" id="urv_tt0051201">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0051201">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0051201|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (115,368 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="115368" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0051201/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A veteran British barrister must defend his client in a murder trial that has surprise after surprise.
</p>
<p class="">
Director:
<a href="/name/nm0000697/">
Billy Wilder
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000061/">
Tyrone Power
</a>
,
<a href="/name/nm0000017/">
Marlene Dietrich
</a>
,
<a href="/name/nm0001452/">
Charles Laughton
</a>
,
<a href="/name/nm0006471/">
Elsa Lanchester
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="115368" name="nv">
115,368
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="8,175,000" name="nv">
$8.18M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0050825">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0050825/">
<img alt="Paths of Glory" class="loadlate" data-tconst="tt0050825" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNjViMmRkOTEtM2ViOS00ODg0LWJhYWEtNTBlOGQxNDczOGY3XkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_UY98_CR2,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
86.
</span>
<a href="/title/tt0050825/">
Paths of Glory
</a>
<span class="lister-item-year text-muted unbold">
(1957)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
88 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0050825" id="urv_tt0050825">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0050825">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0050825|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (186,266 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="186266" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0050825/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
90
</span>
Metascore
</div>
</div>
<p class="text-muted">
After refusing to attack an enemy position, a general accuses the soldiers of cowardice and their commanding officer must defend them.
</p>
<p class="">
Director:
<a href="/name/nm0000040/">
Stanley Kubrick
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000018/">
Kirk Douglas
</a>
,
<a href="/name/nm0576127/">
Ralph Meeker
</a>
,
<a href="/name/nm0579663/">
Adolphe Menjou
</a>
,
<a href="/name/nm0534317/">
George Macready
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="186266" name="nv">
186,266
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0043014">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0043014/">
<img alt="Sunset Blvd." class="loadlate" data-tconst="tt0043014" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTU0NTkyNzYwMF5BMl5BanBnXkFtZTgwMDU0NDk5MTI@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
87.
</span>
<a href="/title/tt0043014/">
Sunset Blvd.
</a>
<span class="lister-item-year text-muted unbold">
(1950)
</span>
</h3>
<p class="text-muted">
<span class="runtime">
110 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Film-Noir
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0043014" id="urv_tt0043014">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0043014">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0043014|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (210,004 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="210004" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0043014/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A screenwriter develops a dangerous relationship with a faded film star determined to make a triumphant return.
</p>
<p class="">
Director:
<a href="/name/nm0000697/">
Billy Wilder
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000034/">
William Holden
</a>
,
<a href="/name/nm0841797/">
Gloria Swanson
</a>
,
<a href="/name/nm0002233/">
Erich von Stroheim
</a>
,
<a href="/name/nm0647970/">
Nancy Olson
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="210004" name="nv">
210,004
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0032553">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0032553/">
<img alt="The Great Dictator" class="loadlate" data-tconst="tt0032553" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMmExYWJjNTktNGUyZS00ODhmLTkxYzAtNWIzOGEyMGNiMmUwXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
88.
</span>
<a href="/title/tt0032553/">
The Great Dictator
</a>
<span class="lister-item-year text-muted unbold">
(1940)
</span>
</h3>
<p class="text-muted">
<span class="runtime">
125 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.4" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.4
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0032553" id="urv_tt0032553">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0032553">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0032553|imdb|8.4|8.4|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.4/10 (212,339 votes) - click stars to rate">
<meta content="8.4" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="212339" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 117.6px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.4
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0032553/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid persecution from Hynkel's regime.
</p>
<p class="">
Director:
<a href="/name/nm0000122/">
Charles Chaplin
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000122/">
Charles Chaplin
</a>
,
<a href="/name/nm0002104/">
Paulette Goddard
</a>
,
<a href="/name/nm0642988/">
Jack Oakie
</a>
,
<a href="/name/nm0306786/">
Reginald Gardiner
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="212339" name="nv">
212,339
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="288,475" name="nv">
$0.29M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt9052870">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt9052870/">
<img alt="Chhichhore" class="loadlate" data-tconst="tt9052870" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYjg2ZDI2YTYtN2EwYi00YWI5LTgyMWQtMWFkYmE3NmJkOGVhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY98_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
89.
</span>
<a href="/title/tt9052870/">
Chhichhore
</a>
<span class="lister-item-year text-muted unbold">
(2019)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
143 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt9052870" id="urv_tt9052870">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt9052870">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt9052870|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (42,671 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="42671" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt9052870/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A tragic incident forces Anirudh, a middle-aged man, to take a trip down memory lane and reminisce his college days along with his friends, who were labelled as losers.
</p>
<p class="">
Director:
<a href="/name/nm4318159/">
Nitesh Tiwari
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm3818286/">
Sushant Singh Rajput
</a>
,
<a href="/name/nm3601766/">
Shraddha Kapoor
</a>
,
<a href="/name/nm5607349/">
Varun Sharma
</a>
,
<a href="/name/nm3070408/">
Prateik
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="42671" name="nv">
42,671
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="898,575" name="nv">
$0.90M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt8579674">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt8579674/">
<img alt="1917" class="loadlate" data-tconst="tt8579674" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BOTdmNTFjNDEtNzg0My00ZjkxLTg1ZDAtZTdkMDc2ZmFiNWQ1XkEyXkFqcGdeQXVyNTAzNzgwNTg@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
90.
</span>
<a href="/title/tt8579674/">
1917
</a>
<span class="lister-item-year text-muted unbold">
(2019)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
R
</span>
<span class="ghost">
|
</span>
<span class="runtime">
119 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Drama, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt8579674" id="urv_tt8579674">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt8579674">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt8579674|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (484,892 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="484892" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt8579674/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
78
</span>
Metascore
</div>
</div>
<p class="text-muted">
April 6th, 1917. As a regiment assembles to wage war deep in enemy territory, two soldiers are assigned to race against time and deliver a message that will stop 1,600 men from walking straight into a deadly trap.
</p>
<p class="">
Director:
<a href="/name/nm0005222/">
Sam Mendes
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm2835616/">
Dean-Charles Chapman
</a>
,
<a href="/name/nm1126657/">
George MacKay
</a>
,
<a href="/name/nm0990547/">
Daniel Mays
</a>
,
<a href="/name/nm0000147/">
Colin Firth
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="484823" name="nv">
484,823
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="159,227,644" name="nv">
$159.23M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt8291224">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt8291224/">
<img alt="Uri: The Surgical Strike" class="loadlate" data-tconst="tt8291224" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMWU4ZjNlNTQtOGE2MS00NDI0LWFlYjMtMmY3ZWVkMjJkNGRmXkEyXkFqcGdeQXVyNjE1OTQ0NjA@._V1_UY98_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
91.
</span>
<a href="/title/tt8291224/">
Uri: The Surgical Strike
</a>
<span class="lister-item-year text-muted unbold">
(2019)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
138 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Drama, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt8291224" id="urv_tt8291224">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt8291224">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt8291224|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (49,902 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="49902" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt8291224/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
Indian army special forces execute a covert operation, avenging the killing of fellow army men at their base by a terrorist group.
</p>
<p class="">
Director:
<a href="/name/nm2336554/">
Aditya Dhar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm5817249/">
Vicky Kaushal
</a>
,
<a href="/name/nm0712546/">
Paresh Rawal
</a>
,
<a href="/name/nm3741768/">
Mohit Raina
</a>
,
<a href="/name/nm4417069/">
Yami Gautam
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="49902" name="nv">
49,902
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="4,186,168" name="nv">
$4.19M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt8239946">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt8239946/">
<img alt="Tumbbad" class="loadlate" data-tconst="tt8239946" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYmQxNmU4ZjgtYzE5Mi00ZDlhLTlhOTctMzJkNjk2ZGUyZGEwXkEyXkFqcGdeQXVyMzgxMDA0Nzk@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
92.
</span>
<a href="/title/tt8239946/">
Tumbbad
</a>
<span class="lister-item-year text-muted unbold">
(2018)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
104 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Fantasy, Horror
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt8239946" id="urv_tt8239946">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt8239946">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt8239946|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (36,096 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="36096" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt8239946/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A mythological story about a goddess who created the entire universe. The plot revolves around the consequences when humans build a temple for her first-born.
</p>
<p class="">
Directors:
<a href="/name/nm9751348/">
Rahi Anil Barve
</a>
,
<a href="/name/nm1628153/">
Anand Gandhi
</a>
,
<a href="/name/nm4205110/">
Adesh Prasad
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm3630374/">
Sohum Shah
</a>
,
<a href="/name/nm8375514/">
Jyoti Malshe
</a>
,
<a href="/name/nm4663387/">
Anita Date
</a>
,
<a href="/name/nm3481909/">
Ronjini Chakraborty
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="36096" name="nv">
36,096
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt7838252">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt7838252/">
<img alt="K.G.F: Chapter 1" class="loadlate" data-tconst="tt7838252" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZDNlNzBjMGUtYTA0Yy00OTI2LWJmZjMtODliYmUyYTI0OGFmXkEyXkFqcGdeQXVyODIwMDI1NjM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
93.
</span>
<a href="/title/tt7838252/">
K.G.F: Chapter 1
</a>
<span class="lister-item-year text-muted unbold">
(2018)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
156 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt7838252" id="urv_tt7838252">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt7838252">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt7838252|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (46,434 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="46434" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt7838252/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
In the 1970s, a fierce rebel rises against brutal oppression and becomes the symbol of hope to legions of downtrodden people.
</p>
<p class="">
Director:
<a href="/name/nm6073824/">
Prashanth Neel
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm5232139/">
Yash
</a>
,
<a href="/name/nm8635807/">
Srinidhi Shetty
</a>
,
<a href="/name/nm10346132/">
Ramachandra Raju
</a>
,
<a href="/name/nm10346131/">
Archana Jois
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="46434" name="nv">
46,434
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt3417422">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt3417422/">
<img alt="Drishyam" class="loadlate" data-tconst="tt3417422" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BYmY3MzYwMGUtOWMxYS00OGVhLWFjNmUtYzlkNGVmY2ZkMjA3XkEyXkFqcGdeQXVyMTExNDQ2MTI@._V1_UY98_CR4,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
94.
</span>
<a href="/title/tt3417422/">
Drishyam
</a>
<span class="lister-item-year text-muted unbold">
(2013)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
160 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt3417422" id="urv_tt3417422">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt3417422">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt3417422|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (37,889 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="37889" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt3417422/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
A man goes to extreme lengths to save his family from punishment after the family commits an accidental crime.
</p>
<p class="">
Director:
<a href="/name/nm2572228/">
Jeethu Joseph
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0482320/">
Mohanlal
</a>
,
<a href="/name/nm0576169/">
Meena
</a>
,
<a href="/name/nm5242011/">
Asha Sharath
</a>
,
<a href="/name/nm6189602/">
Ansiba
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="37889" name="nv">
37,889
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt2106476">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt2106476/">
<img alt="Jagten" class="loadlate" data-tconst="tt2106476" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMTg2NDg3ODg4NF5BMl5BanBnXkFtZTcwNzk3NTc3Nw@@._V1_UY98_CR1,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
95.
</span>
<a href="/title/tt2106476/">
Jagten
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
7
</span>
<span class="ghost">
|
</span>
<span class="runtime">
115 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt2106476" id="urv_tt2106476">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt2106476">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt2106476|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (301,052 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="301052" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt2106476/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
77
</span>
Metascore
</div>
</div>
<p class="text-muted">
A teacher lives a lonely life, all the while struggling over his son's custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.
</p>
<p class="">
Director:
<a href="/name/nm0899121/">
Thomas Vinterberg
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0586568/">
Mads Mikkelsen
</a>
,
<a href="/name/nm0488917/">
Thomas Bo Larsen
</a>
,
<a href="/name/nm5038871/">
Annika Wedderkopp
</a>
,
<a href="/name/nm5039026/">
Lasse Fogelstrøm
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="301052" name="nv">
301,052
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="687,185" name="nv">
$0.69M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt1832382">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt1832382/">
<img alt="Jodaeiye Nader az Simin" class="loadlate" data-tconst="tt1832382" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BN2JmMjViMjMtZTM5Mi00ZGZkLTk5YzctZDg5MjFjZDE4NjNkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
96.
</span>
<a href="/title/tt1832382/">
Jodaeiye Nader az Simin
</a>
<span class="lister-item-year text-muted unbold">
(2011)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
7
</span>
<span class="ghost">
|
</span>
<span class="runtime">
123 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt1832382" id="urv_tt1832382">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt1832382">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt1832382|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (230,850 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="230850" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt1832382/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
95
</span>
Metascore
</div>
</div>
<p class="text-muted">
A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.
</p>
<p class="">
Director:
<a href="/name/nm1410815/">
Asghar Farhadi
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1818216/">
Payman Maadi
</a>
,
<a href="/name/nm0368689/">
Leila Hatami
</a>
,
<a href="/name/nm4299147/">
Sareh Bayat
</a>
,
<a href="/name/nm1486911/">
Shahab Hosseini
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="230850" name="nv">
230,850
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="7,098,492" name="nv">
$7.10M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt1255953">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt1255953/">
<img alt="Incendies" class="loadlate" data-tconst="tt1255953" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BMWE3MGYzZjktY2Q5Mi00Y2NiLWIyYWUtMmIyNzA3YmZlMGFhXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
97.
</span>
<a href="/title/tt1255953/">
Incendies
</a>
<span class="lister-item-year text-muted unbold">
(2010)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
18
</span>
<span class="ghost">
|
</span>
<span class="runtime">
131 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Mystery, War
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt1255953" id="urv_tt1255953">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt1255953">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt1255953|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (160,513 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="160513" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt1255953/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
80
</span>
Metascore
</div>
</div>
<p class="text-muted">
Twins journey to the Middle East to discover their family history and fulfill their mother's last wishes.
</p>
<p class="">
Director:
<a href="/name/nm0898288/">
Denis Villeneuve
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0044073/">
Lubna Azabal
</a>
,
<a href="/name/nm0246386/">
Mélissa Désormeaux-Poulin
</a>
,
<a href="/name/nm0309945/">
Maxim Gaudette
</a>
,
<a href="/name/nm1323233/">
Mustafa Kamel
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="160513" name="nv">
160,513
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="6,857,096" name="nv">
$6.86M
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt11032374">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt11032374/">
<img alt="Kimetsu no Yaiba: Mugen Ressha-Hen" class="loadlate" data-tconst="tt11032374" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BODI2NjdlYWItMTE1ZC00YzI2LTlhZGQtNzE3NzA4MWM0ODYzXkEyXkFqcGdeQXVyNjU1OTg4OTM@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
98.
</span>
<a href="/title/tt11032374/">
Kimetsu no Yaiba: Mugen Ressha-Hen
</a>
<span class="lister-item-year text-muted unbold">
(2020)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
117 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Animation, Action, Adventure
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt11032374" id="urv_tt11032374">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt11032374">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt11032374|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (33,162 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="33162" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt11032374/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
75
</span>
Metascore
</div>
</div>
<p class="text-muted">
After his family was brutally murdered and his sister turned into a demon, Tanjiro Kamado's journey as a demon slayer began. Tanjiro and his comrades embark on a new mission aboard the Mugen Train, on track to despair.
</p>
<p class="">
Director:
<a href="/name/nm1417038/">
Haruo Sotozaki
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm5137121/">
Natsuki Hanae
</a>
,
<a href="/name/nm6981978/">
Akari Kitô
</a>
,
<a href="/name/nm4303311/">
Yoshitsugu Matsuoka
</a>
,
<a href="/name/nm1683003/">
Hiro Shimono
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="33162" name="nv">
33,162
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt10272386">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt10272386/">
<img alt="The Father" class="loadlate" data-tconst="tt10272386" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BZGJhNWRiOWQtMjI4OS00ZjcxLTgwMTAtMzQ2ODkxY2JkOTVlXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_UX67_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
99.
</span>
<a href="/title/tt10272386/">
The Father
</a>
<span class="lister-item-year text-muted unbold">
(I) (2020)
</span>
</h3>
<p class="text-muted">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
97 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt10272386" id="urv_tt10272386">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt10272386">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt10272386|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (88,752 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="88752" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt10272386/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
88
</span>
Metascore
</div>
</div>
<p class="text-muted">
A man refuses all assistance from his daughter as he ages. As he tries to make sense of his changing circumstances, he begins to doubt his loved ones, his own mind and even the fabric of his reality.
</p>
<p class="">
Director:
<a href="/name/nm1725469/">
Florian Zeller
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000164/">
Anthony Hopkins
</a>
,
<a href="/name/nm1469236/">
Olivia Colman
</a>
,
<a href="/name/nm0309693/">
Mark Gatiss
</a>
,
<a href="/name/nm0931404/">
Olivia Williams
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="88752" name="nv">
88,752
</span>
</p>
</div>
</div>
<div class="lister-item mode-advanced">
<div class="lister-top-right">
<div class="ribbonize" data-caller="filmosearch" data-tconst="tt0476735">
</div>
</div>
<div class="lister-item-image float-left">
<a href="/title/tt0476735/">
<img alt="Babam ve Oglum" class="loadlate" data-tconst="tt0476735" height="98" loadlate="https://m.media-amazon.com/images/M/MV5BNjAzMzEwYzctNjc1MC00Nzg5LWFmMGItMTgzYmMyNTY2OTQ4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY98_CR0,0,67,98_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="67"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
100.
</span>
<a href="/title/tt0476735/">
Babam ve Oglum
</a>
<span class="lister-item-year text-muted unbold">
(2005)
</span>
</h3>
<p class="text-muted">
<span class="runtime">
112 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Family
</span>
</p>
<div class="ratings-bar">
<div class="inline-block ratings-imdb-rating" data-value="8.3" name="ir">
<span class="global-sprite rating-star imdb-rating">
</span>
<strong>
8.3
</strong>
</div>
<div class="inline-block ratings-user-rating">
<span class="userRatingValue" data-tconst="tt0476735" id="urv_tt0476735">
<span class="global-sprite rating-star no-rating">
</span>
<span class="rate" data-no-rating="Rate this" data-value="0" name="ur">
Rate this
</span>
</span>
<div class="starBarWidget" id="sb_tt0476735">
<div class="rating rating-list" data-csrf-token="" data-ga-identifier="" data-starbar-class="rating-list" data-user="" id="tt0476735|imdb|8.3|8.3|adv_li_tt||advsearch|title" itemprop="aggregateRating" itemscope="" itemtype="http://schema.org/AggregateRating" title="Users rated this 8.3/10 (82,689 votes) - click stars to rate">
<meta content="8.3" itemprop="ratingValue"/>
<meta content="10" itemprop="bestRating"/>
<meta content="82689" itemprop="ratingCount"/>
<span class="rating-bg">
</span>
<span class="rating-imdb" style="width: 116.2px">
</span>
<span class="rating-stars">
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
1
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
2
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
3
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
4
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
5
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
6
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
7
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
8
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
9
</span>
</a>
<a href="/register/login?why=vote" rel="nofollow" title="Register or login to rate this title">
<span>
10
</span>
</a>
</span>
<span class="rating-rating">
<span class="value">
8.3
</span>
<span class="grey">
/
</span>
<span class="grey">
10
</span>
</span>
<span class="rating-cancel">
<a href="/title/tt0476735/vote" rel="nofollow" title="Delete">
<span>
X
</span>
</a>
</span>
</div>
</div>
</div>
</div>
<p class="text-muted">
The family of a left-wing journalist is torn apart after the military coup of Turkey in 1980.
</p>
<p class="">
Director:
<a href="/name/nm1463981/">
Cagan Irmak
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm12232673/">
Eser Sariyar
</a>
,
<a href="/name/nm1002038/">
Çetin Tekindor
</a>
,
<a href="/name/nm0476334/">
Fikret Kuskan
</a>
,
<a href="/name/nm0406157/">
Hümeyra
</a>
</p>
<p class="sort-num_votes-visible">
<span class="text-muted">
Votes:
</span>
<span data-value="82676" name="nv">
82,676
</span>
</p>
</div>
</div>
</div>
</div>
<br class="clear"/>
<div class="desc">
<span>
1-100 of 1,000 titles.
</span>
<span class="ghost">
|
</span>
<a class="lister-page-next next-page" href="/search/title/?groups=top_1000&sort=user_rating,desc&count=100&start=101">
Next »
</a>
</div>
</div>
</div>
<div id="sidebar">
<!-- no content received for slot: top_rhs -->
</div>
</div>
<br class="clear"/>
</div>
<div id="rvi-div">
<div class="recently-viewed">
<div class="header">
<div class="rhs">
<a href="#" id="clear_rvi">
Clear your history
</a>
</div>
<h3>
Recently Viewed
</h3>
</div>
<div class="items">
</div>
</div>
</div>
<!-- no content received for slot: bottom_ad -->
<script type="text/javascript">
try {
window.lumierePlayer = window.lumierePlayer || {};
window.lumierePlayer.weblab = JSON.parse('{"IMDB_VIDEO_PLAYER_162496":"C"}');
} catch (error) {
if (window.ueLogError) {
window.ueLogError(error, {
logLevel: "WARN",
attribution: "videoplayer",
message: "Failed to parse weblabs for video player."
});
}
}
</script>
</div>
</div>
<script>
if (typeof uet == 'function') {
uet("bb", "desktopFooter", {wb: 1});
}
</script>
<div id="9754ea24-c8c4-4f36-b6e5-1a6e45034323">
<footer class="imdb-footer VUGIPjGgHtzvbHiU19iTQ">
<div class="_32mc4FXftSbwhpJwmGCYUQ">
<div class="ipc-page-content-container ipc-page-content-container--center" role="presentation">
<a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-accent1 ipc-button--theme-baseAlt imdb-footer__open-in-app-button" href="https://slyb.app.link/SKdyQ6A449" role="button" tabindex="0">
<div class="ipc-button__text">
Get the IMDb App
</div>
</a>
</div>
</div>
<div class="ipc-page-content-container ipc-page-content-container--center _2AR8CsLqQAMCT1_Q7eidSY" role="presentation">
<div class="imdb-footer__links">
<div class="_2Wc8yXs8SzGv7TVS-oOmhT">
<ul class="ipc-inline-list _1O3-k0VDASm1IeBrfofV4g baseAlt" role="presentation">
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Facebook" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://facebook.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Facebook">
<svg class="ipc-icon ipc-icon--facebook" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M20.896 2H3.104C2.494 2 2 2.494 2 3.104v17.792C2 21.506 2.494 22 3.104 22h9.579v-7.745h-2.607v-3.018h2.607V9.01c0-2.584 1.577-3.99 3.882-3.99 1.104 0 2.052.082 2.329.119v2.7h-1.598c-1.254 0-1.496.595-1.496 1.47v1.927h2.989l-.39 3.018h-2.6V22h5.097c.61 0 1.104-.494 1.104-1.104V3.104C22 2.494 21.506 2 20.896 2">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Instagram" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://instagram.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Instagram">
<svg class="ipc-icon ipc-icon--instagram" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M11.997 2.04c-2.715 0-3.056.011-4.122.06-1.064.048-1.79.217-2.426.463a4.901 4.901 0 0 0-1.771 1.151 4.89 4.89 0 0 0-1.153 1.767c-.247.635-.416 1.36-.465 2.422C2.011 8.967 2 9.307 2 12.017s.011 3.049.06 4.113c.049 1.062.218 1.787.465 2.422a4.89 4.89 0 0 0 1.153 1.767 4.901 4.901 0 0 0 1.77 1.15c.636.248 1.363.416 2.427.465 1.066.048 1.407.06 4.122.06s3.055-.012 4.122-.06c1.064-.049 1.79-.217 2.426-.464a4.901 4.901 0 0 0 1.77-1.15 4.89 4.89 0 0 0 1.154-1.768c.247-.635.416-1.36.465-2.422.048-1.064.06-1.404.06-4.113 0-2.71-.012-3.05-.06-4.114-.049-1.062-.218-1.787-.465-2.422a4.89 4.89 0 0 0-1.153-1.767 4.901 4.901 0 0 0-1.77-1.15c-.637-.247-1.363-.416-2.427-.464-1.067-.049-1.407-.06-4.122-.06m0 1.797c2.67 0 2.985.01 4.04.058.974.045 1.503.207 1.856.344.466.181.8.397 1.15.746.349.35.566.682.747 1.147.137.352.3.88.344 1.853.048 1.052.058 1.368.058 4.032 0 2.664-.01 2.98-.058 4.031-.044.973-.207 1.501-.344 1.853a3.09 3.09 0 0 1-.748 1.147c-.35.35-.683.565-1.15.746-.352.137-.88.3-1.856.344-1.054.048-1.37.058-4.04.058-2.669 0-2.985-.01-4.039-.058-.974-.044-1.504-.207-1.856-.344a3.098 3.098 0 0 1-1.15-.746 3.09 3.09 0 0 1-.747-1.147c-.137-.352-.3-.88-.344-1.853-.049-1.052-.059-1.367-.059-4.031 0-2.664.01-2.98.059-4.032.044-.973.207-1.501.344-1.853a3.09 3.09 0 0 1 .748-1.147c.35-.349.682-.565 1.149-.746.352-.137.882-.3 1.856-.344 1.054-.048 1.37-.058 4.04-.058">
</path>
<path d="M11.997 15.342a3.329 3.329 0 0 1-3.332-3.325 3.329 3.329 0 0 1 3.332-3.326 3.329 3.329 0 0 1 3.332 3.326 3.329 3.329 0 0 1-3.332 3.325m0-8.449a5.128 5.128 0 0 0-5.134 5.124 5.128 5.128 0 0 0 5.134 5.123 5.128 5.128 0 0 0 5.133-5.123 5.128 5.128 0 0 0-5.133-5.124m6.536-.203c0 .662-.537 1.198-1.2 1.198a1.198 1.198 0 1 1 1.2-1.197">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Twitch" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitch.tv/IMDb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitch">
<svg class="ipc-icon ipc-icon--twitch" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M3.406 2h18.596v12.814l-5.469 5.47H12.47L9.813 22.94H7.001v-2.657H2V5.594L3.406 2zm16.721 11.876v-10H5.125v13.126h4.22v2.656L12 17.002h5l3.126-3.126z">
</path>
<path d="M17.002 7.47v5.469h-1.875v-5.47zM12.001 7.47v5.469h-1.875v-5.47z">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Twitter" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitter.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitter">
<svg class="ipc-icon ipc-icon--twitter" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M8.29 19.936c7.547 0 11.675-6.13 11.675-11.446 0-.175-.004-.348-.012-.52A8.259 8.259 0 0 0 22 5.886a8.319 8.319 0 0 1-2.356.633 4.052 4.052 0 0 0 1.804-2.225c-.793.46-1.67.796-2.606.976A4.138 4.138 0 0 0 15.847 4c-2.266 0-4.104 1.802-4.104 4.023 0 .315.036.622.107.917a11.728 11.728 0 0 1-8.458-4.203 3.949 3.949 0 0 0-.556 2.022 4 4 0 0 0 1.826 3.348 4.136 4.136 0 0 1-1.858-.503l-.001.051c0 1.949 1.415 3.575 3.292 3.944a4.193 4.193 0 0 1-1.853.07c.522 1.597 2.037 2.76 3.833 2.793a8.34 8.34 0 0 1-5.096 1.722A8.51 8.51 0 0 1 2 18.13a11.785 11.785 0 0 0 6.29 1.807">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="YouTube" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://youtube.com/imdb/" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="YouTube">
<svg class="ipc-icon ipc-icon--youtube" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M9.955 14.955v-5.91L15.182 12l-5.227 2.955zm11.627-7.769a2.505 2.505 0 0 0-1.768-1.768C18.254 5 12 5 12 5s-6.254 0-7.814.418c-.86.23-1.538.908-1.768 1.768C2 8.746 2 12 2 12s0 3.254.418 4.814c.23.86.908 1.538 1.768 1.768C5.746 19 12 19 12 19s6.254 0 7.814-.418a2.505 2.505 0 0 0 1.768-1.768C22 15.254 22 12 22 12s0-3.254-.418-4.814z">
</path>
</svg>
</a>
</li>
</ul>
</div>
<div>
<ul class="ipc-inline-list _1O3-k0VDASm1IeBrfofV4g baseAlt" role="presentation">
<li class="ipc-inline-list__item zgFV3U-XECrqVQnyDbx2B" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://slyb.app.link/SKdyQ6A449" target="_blank">
Get the IMDb App
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item X17C45Q1MH_7XboLL_EEG" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="?mode=desktop&ref_=m_ft_dsk">
View Full Site
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://help.imdb.com/imdb" target="_blank">
Help
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://help.imdb.com/article/imdb/general-information/imdb-site-index/GNCX7BHNSPBTFALQ#so" target="_blank">
Site Index
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://pro.imdb.com?ref_=ft_pro&rf=cons_tf_pro" target="_blank">
IMDbPro
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://www.boxofficemojo.com" target="_blank">
Box Office Mojo
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://developer.imdb.com/" target="_blank">
IMDb Developer
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
</ul>
</div>
<div>
<ul class="ipc-inline-list _1O3-k0VDASm1IeBrfofV4g baseAlt" role="presentation">
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.imdb.com/pressroom/?ref_=ft_pr">
Press Room
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://advertising.amazon.com/resources/ad-specs/imdb/" target="_blank">
Advertising
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://www.amazon.jobs/en/teams/imdb" target="_blank">
Jobs
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/conditions?ref_=ft_cou">
Conditions of Use
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/privacy?ref_=ft_pvc">
Privacy Policy
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://www.amazon.com/b/?&node=5160028011" target="_blank">
Interest-Based Ads
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<div class="_2mulh8fx3PjJyxvyLovP4w" id="teconsent">
</div>
</li>
</ul>
</div>
</div>
<div class="imdb-footer__logo _1eKbSAFyeJgUyBUy2VbcS_">
<svg aria-label="IMDb, an Amazon company" height="18" title="IMDb, an Amazon company" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path d="M26.707 2.45c-3.227 2.374-7.906 3.637-11.935 3.637C9.125 6.087 4.04 4.006.193.542-.11.27.161-.101.523.109 4.675 2.517 9.81 3.968 15.111 3.968c3.577 0 7.51-.74 11.127-2.27.546-.23 1.003.358.47.752z" id="ftr__a">
</path>
<path d="M4.113 1.677C3.7 1.15 1.385 1.427.344 1.552c-.315.037-.364-.237-.08-.436C2.112-.178 5.138.196 5.49.629c.354.437-.093 3.462-1.824 4.906-.266.222-.52.104-.401-.19.39-.97 1.261-3.14.848-3.668z" id="ftr__c">
</path>
<path d="M.435 1.805V.548A.311.311 0 0 1 .755.23l5.65-.001c.181 0 .326.13.326.317v1.078c-.002.181-.154.417-.425.791L3.378 6.582c1.087-.026 2.236.137 3.224.69.222.125.282.309.3.49v1.342c0 .185-.203.398-.417.287-1.74-.908-4.047-1.008-5.97.011-.197.104-.403-.107-.403-.292V7.835c0-.204.004-.552.21-.863l3.392-4.85H.761a.314.314 0 0 1-.326-.317z" id="ftr__e">
</path>
<path d="M2.247 9.655H.528a.323.323 0 0 1-.307-.29L.222.569C.222.393.37.253.554.253h1.601a.323.323 0 0 1 .313.295v1.148h.031C2.917.586 3.703.067 4.762.067c1.075 0 1.75.518 2.23 1.629C7.41.586 8.358.067 9.369.067c.722 0 1.508.296 1.99.963.545.74.433 1.813.433 2.757l-.002 5.551a.324.324 0 0 1-.331.317H9.74a.321.321 0 0 1-.308-.316l-.001-4.663c0-.37.032-1.296-.048-1.647-.128-.593-.514-.76-1.011-.76-.418 0-.85.278-1.027.722-.177.445-.161 1.185-.161 1.685v4.662a.323.323 0 0 1-.331.317H5.137a.322.322 0 0 1-.31-.316l-.001-4.663c0-.981.16-2.424-1.059-2.424-1.236 0-1.188 1.406-1.188 2.424v4.662a.324.324 0 0 1-.332.317z" id="ftr__g">
</path>
<path d="M4.037.067c2.551 0 3.931 2.184 3.931 4.96 0 2.684-1.524 4.814-3.931 4.814C1.533 9.84.169 7.656.169 4.935.17 2.195 1.55.067 4.037.067zm.015 1.796c-1.267 0-1.347 1.721-1.347 2.795 0 1.073-.016 3.368 1.332 3.368 1.332 0 1.395-1.851 1.395-2.98 0-.74-.031-1.629-.256-2.332-.193-.61-.578-.851-1.124-.851z" id="ftr__i">
</path>
<path d="M2.206 9.655H.493a.321.321 0 0 1-.308-.316L.182.54a.325.325 0 0 1 .33-.287h1.595c.15.007.274.109.305.245v1.346h.033C2.926.641 3.6.067 4.788.067c.77 0 1.524.277 2.006 1.037.449.703.449 1.887.449 2.739v5.535a.325.325 0 0 1-.33.277H5.19a.324.324 0 0 1-.306-.277V4.602c0-.962.113-2.37-1.075-2.37-.418 0-.803.278-.995.704-.24.537-.273 1.074-.273 1.666v4.736a.328.328 0 0 1-.335.317z" id="ftr__k">
</path>
<path d="M8.314 8.295c.11.156.134.341-.006.455-.35.294-.974.834-1.318 1.139l-.004-.004a.357.357 0 0 1-.406.04c-.571-.473-.673-.692-.986-1.142-.943.958-1.611 1.246-2.834 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.235-.483 3.233-.595V3.74c0-.409.032-.89-.209-1.243-.21-.315-.611-.445-.965-.445-.656 0-1.238.335-1.382 1.029-.03.154-.143.307-.298.315l-1.667-.18c-.14-.032-.297-.144-.256-.358C.859.842 2.684.234 4.32.234c.837 0 1.93.222 2.59.853.836.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.65 1.588zM5.253 5.706v-.37c-1.244 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.483 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__m">
</path>
<path d="M8.203 8.295c.11.156.135.341-.005.455-.352.294-.976.834-1.319 1.139l-.004-.004a.356.356 0 0 1-.406.04c-.571-.473-.673-.692-.985-1.142-.944.958-1.613 1.246-2.835 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.236-.483 3.233-.595V3.74c0-.409.032-.89-.21-1.243-.208-.315-.61-.445-.964-.445-.656 0-1.239.335-1.382 1.029-.03.154-.142.307-.298.315l-1.666-.18C.48 3.184.324 3.072.365 2.858.748.842 2.573.234 4.209.234c.836 0 1.93.222 2.59.853.835.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.649 1.588zM5.142 5.706v-.37c-1.243 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.482 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__o">
</path>
<path d="M2.935 10.148c-.88 0-1.583-.25-2.11-.75-.527-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.511-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.151-1.136-.455-1.408-.304-.271-.821-.407-1.553-.407-.855 0-1.691.123-2.509.37-.285.087-.464.13-.539.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352C.79.938.89.87 1.039.808c.383-.173.87-.312 1.459-.417A9.997 9.997 0 0 1 4.255.234c1.177 0 2.045.244 2.602.731.557.489.836 1.233.836 2.233v6.338c0 .247-.124.37-.372.37h-.798c-.236 0-.373-.117-.41-.351l-.093-.612c-.445.383-.939.68-1.477.89-.54.21-1.076.315-1.608.315zm.446-1.39c.41 0 .836-.08 1.282-.241.447-.16.874-.395 1.283-.704v-1.89a8.408 8.408 0 0 0-1.97-.241c-1.401 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__q">
</path>
<path d="M.467 9.907c-.248 0-.372-.124-.372-.37V.883C.095.635.219.51.467.51h.817c.125 0 .22.026.288.075.068.05.115.142.14.277l.111.686C3 .672 4.24.234 5.541.234c.904 0 1.592.238 2.063.713.471.476.707 1.165.707 2.066v6.524c0 .246-.124.37-.372.37H6.842c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.979 0-1.94.315-2.881.946v6.875c0 .246-.125.37-.372.37H.467z" id="ftr__s">
</path>
<path d="M4.641 9.859c-1.462 0-2.58-.417-3.355-1.251C.51 7.774.124 6.566.124 4.985c0-1.569.4-2.783 1.2-3.641C2.121.486 3.252.055 4.714.055c.67 0 1.326.118 1.971.353.136.05.232.111.288.185.056.074.083.198.083.37v.501c0 .248-.08.37-.241.37-.062 0-.162-.018-.297-.055a5.488 5.488 0 0 0-1.544-.222c-1.04 0-1.79.262-2.248.787-.459.526-.688 1.362-.688 2.511v.241c0 1.124.232 1.949.697 2.474.465.525 1.198.788 2.203.788a5.98 5.98 0 0 0 1.672-.26c.136-.037.23-.056.279-.056.161 0 .242.124.242.371v.5c0 .162-.025.279-.075.353-.05.074-.148.142-.297.204-.608.259-1.314.389-2.119.389z" id="ftr__u">
</path>
<path d="M4.598 10.185c-1.413 0-2.516-.438-3.31-1.316C.497 7.992.1 6.769.1 5.199c0-1.555.397-2.773 1.19-3.65C2.082.673 3.185.235 4.598.235c1.412 0 2.515.438 3.308 1.316.793.876 1.19 2.094 1.19 3.65 0 1.569-.397 2.792-1.19 3.669-.793.878-1.896 1.316-3.308 1.316zm0-1.483c1.747 0 2.62-1.167 2.62-3.502 0-2.323-.873-3.484-2.62-3.484S1.977 2.877 1.977 5.2c0 2.335.874 3.502 2.62 3.502z" id="ftr__w">
</path>
<path d="M.396 9.907c-.248 0-.371-.124-.371-.37V.883C.025.635.148.51.396.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.594C2.943.64 4.102.234 5.23.234c1.152 0 1.934.438 2.342 1.315C8.798.672 10.025.234 11.25.234c.856 0 1.512.24 1.971.722.458.482.688 1.168.688 2.057v6.524c0 .246-.124.37-.372.37h-1.097c-.248 0-.371-.124-.371-.37V3.533c0-.618-.119-1.075-.354-1.372-.235-.297-.607-.445-1.115-.445-.904 0-1.815.278-2.732.834.012.087.018.18.018.278v6.709c0 .246-.124.37-.372.37H6.42c-.249 0-.372-.124-.372-.37V3.533c0-.618-.118-1.075-.353-1.372-.235-.297-.608-.445-1.115-.445-.942 0-1.847.272-2.714.815v7.006c0 .246-.125.37-.372.37H.396z" id="ftr__y">
</path>
<path d="M.617 13.724c-.248 0-.371-.124-.371-.37V.882c0-.247.123-.37.371-.37h.818c.248 0 .39.123.428.37l.093.594C2.897.648 3.944.234 5.096.234c1.203 0 2.15.435 2.845 1.307.693.87 1.04 2.053 1.04 3.548 0 1.52-.365 2.736-1.096 3.65-.731.915-1.704 1.372-2.918 1.372-1.116 0-2.076-.365-2.881-1.094v4.337c0 .246-.125.37-.372.37H.617zM4.54 8.628c1.71 0 2.566-1.149 2.566-3.447 0-1.173-.208-2.044-.624-2.612-.415-.569-1.05-.853-1.904-.853-.88 0-1.711.284-2.491.853v5.17c.805.593 1.623.889 2.453.889z" id="ftr__A">
</path>
<path d="M2.971 10.148c-.88 0-1.583-.25-2.11-.75-.526-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.512-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.15-1.136-.455-1.408-.304-.271-.821-.407-1.552-.407-.855 0-1.692.123-2.509.37-.285.087-.465.13-.54.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352.05-.074.148-.142.297-.204.384-.173.87-.312 1.46-.417A9.991 9.991 0 0 1 4.29.234c1.177 0 2.045.244 2.603.731.557.489.836 1.233.836 2.233v6.338c0 .247-.125.37-.372.37h-.799c-.236 0-.372-.117-.41-.351l-.092-.612a5.09 5.09 0 0 1-1.478.89 4.4 4.4 0 0 1-1.608.315zm.446-1.39c.41 0 .836-.08 1.283-.241.446-.16.874-.395 1.282-.704v-1.89a8.403 8.403 0 0 0-1.97-.241c-1.4 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__C">
</path>
<path d="M.503 9.907c-.248 0-.371-.124-.371-.37V.883C.132.635.255.51.503.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.686C3.037.672 4.277.234 5.578.234c.904 0 1.592.238 2.063.713.47.476.706 1.165.706 2.066v6.524c0 .246-.123.37-.371.37H6.879c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.98 0-1.94.315-2.882.946v6.875c0 .246-.124.37-.371.37H.503z" id="ftr__E">
</path>
<path d="M1.988 13.443c-.397 0-.75-.043-1.059-.13-.15-.037-.251-.1-.307-.185a.684.684 0 0 1-.084-.37v-.483c0-.234.093-.352.28-.352.06 0 .154.013.278.037.124.025.291.037.502.037.459 0 .82-.114 1.087-.343.266-.228.505-.633.716-1.213l.353-.945L.167.675C.08.465.037.316.037.23c0-.149.086-.222.26-.222h1.115c.198 0 .334.03.409.093.075.062.148.197.223.407l2.602 7.19 2.51-7.19c.074-.21.148-.345.222-.407.075-.062.211-.093.41-.093h1.04c.174 0 .261.073.261.222 0 .086-.044.235-.13.445l-4.09 10.377c-.334.853-.725 1.464-1.17 1.835-.446.37-1.017.556-1.711.556z" id="ftr__G">
</path>
</defs>
<g fill="none" fill-rule="evenodd">
<g transform="translate(31.496 11.553)">
<mask fill="currentColor" id="ftr__b">
<use xlink:href="#ftr__a">
</use>
</mask>
<path d="M.04 6.088h26.91V.04H.04z" fill="currentColor" mask="url(#ftr__b)">
</path>
</g>
<g transform="translate(55.433 10.797)">
<mask fill="currentColor" id="ftr__d">
<use xlink:href="#ftr__c">
</use>
</mask>
<path d="M.05 5.664h5.564V.222H.05z" fill="currentColor" mask="url(#ftr__d)">
</path>
</g>
<g transform="translate(55.433 .97)">
<mask fill="currentColor" id="ftr__f">
<use xlink:href="#ftr__e">
</use>
</mask>
<path d="M.11 9.444h6.804V.222H.111z" fill="currentColor" mask="url(#ftr__f)">
</path>
</g>
<g transform="translate(33.008 .97)">
<mask fill="currentColor" id="ftr__h">
<use xlink:href="#ftr__g">
</use>
</mask>
<path d="M.191 9.655h11.611V.04H.192z" fill="currentColor" mask="url(#ftr__h)">
</path>
</g>
<g transform="translate(62.992 .97)">
<mask fill="currentColor" id="ftr__j">
<use xlink:href="#ftr__i">
</use>
</mask>
<path d="M.141 9.867h7.831V.04H.142z" fill="currentColor" mask="url(#ftr__j)">
</path>
</g>
<g transform="translate(72.063 .97)">
<mask fill="currentColor" id="ftr__l">
<use xlink:href="#ftr__k">
</use>
</mask>
<path d="M.171 9.655h7.076V.04H.17z" fill="currentColor" mask="url(#ftr__l)">
</path>
</g>
<g transform="translate(46.11 .718)">
<mask fill="currentColor" id="ftr__n">
<use xlink:href="#ftr__m">
</use>
</mask>
<path d="M.181 10.059h8.225V.232H.18z" fill="currentColor" mask="url(#ftr__n)">
</path>
</g>
<g transform="translate(23.685 .718)">
<mask fill="currentColor" id="ftr__p">
<use xlink:href="#ftr__o">
</use>
</mask>
<path d="M.05 10.059h8.255V.232H.05z" fill="currentColor" mask="url(#ftr__p)">
</path>
</g>
<g transform="translate(0 .718)">
<mask fill="currentColor" id="ftr__r">
<use xlink:href="#ftr__q">
</use>
</mask>
<path d="M.03 10.15h7.68V.231H.03z" fill="currentColor" mask="url(#ftr__r)">
</path>
</g>
<g transform="translate(10.33 .718)">
<mask fill="currentColor" id="ftr__t">
<use xlink:href="#ftr__s">
</use>
</mask>
<path d="M.07 9.907h8.255V.232H.071z" fill="currentColor" mask="url(#ftr__t)">
</path>
</g>
<g transform="translate(84.157 .97)">
<mask fill="currentColor" id="ftr__v">
<use xlink:href="#ftr__u">
</use>
</mask>
<path d="M.11 9.867h7.046V.04H.11z" fill="currentColor" mask="url(#ftr__v)">
</path>
</g>
<g transform="translate(92.472 .718)">
<mask fill="currentColor" id="ftr__x">
<use xlink:href="#ftr__w">
</use>
</mask>
<path d="M.08 10.21h9.041V.232H.081z" fill="currentColor" mask="url(#ftr__x)">
</path>
</g>
<g transform="translate(103.811 .718)">
<mask fill="currentColor" id="ftr__z">
<use xlink:href="#ftr__y">
</use>
</mask>
<path d="M.02 9.907H13.93V.232H.02z" fill="currentColor" mask="url(#ftr__z)">
</path>
</g>
<g transform="translate(120.189 .718)">
<mask fill="currentColor" id="ftr__B">
<use xlink:href="#ftr__A">
</use>
</mask>
<path d="M.242 13.747H9.01V.232H.242z" fill="currentColor" mask="url(#ftr__B)">
</path>
</g>
<g transform="translate(130.772 .718)">
<mask fill="currentColor" id="ftr__D">
<use xlink:href="#ftr__C">
</use>
</mask>
<path d="M.06 10.15h7.68V.231H.06z" fill="currentColor" mask="url(#ftr__D)">
</path>
</g>
<g transform="translate(141.102 .718)">
<mask fill="currentColor" id="ftr__F">
<use xlink:href="#ftr__E">
</use>
</mask>
<path d="M.131 9.907h8.224V.232H.131z" fill="currentColor" mask="url(#ftr__F)">
</path>
</g>
<g transform="translate(150.677 1.222)">
<mask fill="currentColor" id="ftr__H">
<use xlink:href="#ftr__G">
</use>
</mask>
<path d="M.02 13.455h9.071V0H.021z" fill="currentColor" mask="url(#ftr__H)">
</path>
</g>
</g>
</svg>
</div>
<p class="imdb-footer__copyright _2-iNNCFskmr4l2OFN2DRsf">
© 1990-
<!-- -->
2021
<!-- -->
by IMDb.com, Inc.
</p>
</div>
</footer>
<svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
<lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
</defs>
</svg>
</div>
<script type="text/javascript">
if (!window.RadWidget) {
window.RadWidget = {
registerReactWidgetInstance: function(input) {
window.RadWidget[input.widgetName] = window.RadWidget[input.widgetName] || [];
window.RadWidget[input.widgetName].push({
id: input.instanceId,
props: JSON.stringify(input.model)
})
},
getReactWidgetInstances: function(widgetName) {
return window.RadWidget[widgetName] || []
}
};
}
</script>
<script type="text/javascript">
window['RadWidget'].registerReactWidgetInstance({
widgetName: "IMDbConsumerSiteFooterFeatureV1",
instanceId: "9754ea24-c8c4-4f36-b6e5-1a6e45034323",
model: {"ResponsiveFooterModel":{"showIMDbTVLink":false,"desktopLink":"?mode=desktop&ref_=m_ft_dsk","showDesktopLink":true}}
});
</script>
<script>
if (typeof uet == 'function') {
uet("be", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script src="https://m.media-amazon.com/images/S/sash/EbJ50esdfIcjt2R.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/Q$vpA-vTfEkXQYW.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/EtkwkDagnYhJNZk.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/3wL0We-DlKJbHux.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/pEaYC0JytMRJx29.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/D-WNvtV4PDafd7p.js" type="text/javascript">
</script>
<script type="text/javascript">
function jQueryOnReady(remaining_count) {
if (window.jQuery && typeof $.fn.watchlistRibbon !== 'undefined') {
jQuery(
function() {
// Init the watchlist rendering
$("a.wlb_watchlist_lite").wlb_lite();
$(".lister").watchlistRibbon(".ribbonize");
// Invoke the rating animation
$(".lister-item").rating_animation();
}
);
} else if (remaining_count > 0) {
setTimeout(function() { jQueryOnReady(remaining_count-1) }, 100);
}
}
jQueryOnReady(50);
</script>
<script type="text/javascript">
window.webpackManifest_IMDbConsumerSiteNavFeature={}
</script>
<script type="text/javascript">
window.webpackManifest_IMDbConsumerSiteFooterFeature={}
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/81+iGRo8ZxL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61SeeyqsNHL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61vDTVmJCNL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/41TeoVoT7fL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31827uXCh4L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31P6K1kIR-L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/41Pr-woKLCL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/51GDom0+d0L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61Ka2ezTX9L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/019vMGkrlkL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/11UNuUz7BzL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/21QhnrxvhtL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01EjywnajPL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01eEXY1YetL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/21n5fdlWBhL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/21a9eB+eAFL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01X4+ME2ObL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61bggxN4hhL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/81HQzdfMCdL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/41uka3OgCRL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31ROAIgElzL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31VYLn8dVDL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01qhBQyMr+L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/412zhLIJTNL.js" type="text/javascript">
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_started');
}
</script>
<script class="ics-branch-sdk-script">
if (document.domain.startsWith('m.')) {
function logBranchMetric(metricName, n) {
if (window && window.ue && typeof window.ue.count === 'function') {
window.ue.count(metricName, n);
}
}
logBranchMetric('BranchSDK.Requests', 1);
if (uet) {
uet('bb', 'LoadBranchSDK', {wb: 1});
}
(function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://cdn.branch.io/branch-2.58.0.min.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"addListener applyCode autoAppIndex banner closeBanner closeJourney creditHistory credits data deepview deepviewCta first getCode init link logout redeem referrals removeListener sendSMS setBranchViewData setIdentity track validateCode trackCommerceEvent logEvent disableTracking".split(" "), 0);
branch.init('key_live_jdSfREMXW6WE9FcCt5HWFbhgswmprlIn', { timeout: 2000 }, (err, data) => {
if (uet && uex) {
uet('be', 'LoadBranchSDK', {wb: 1});
uex('ld', 'LoadBranchSDK', {wb: 1} )
}
if (err) {
console.log('Branch init error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
logBranchMetric('BranchSDK.Initialized', 1);
branch.setBranchViewData(
{
'$deeplink_path': '/search/title/'
}
);
branch.setIdentity('000-0000000-0000000', (err, data) => {
if (err) {
console.log('Branch setIdentity error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
}
});
}
});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadFooterJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadFooterJS", {wb: 1});
}
</script>
<div id="servertime" time="335">
</div>
<script>
if (typeof uet == 'function') {
uet("be");
}
</script>
</body>
</html>
| Name | Imdb_Rating | Year_of_Release | |
|---|---|---|---|
| 0 | The Shawshank Redemption | 9.3 | (1994) |
| 1 | The Godfather | 9.2 | (1972) |
| 2 | Soorarai Pottru | 9.1 | (2020) |
| 3 | The Dark Knight | 9.0 | (2008) |
| 4 | The Godfather: Part II | 9.0 | (1974) |
| ... | ... | ... | ... |
| 95 | Jodaeiye Nader az Simin | 8.3 | (2011) |
| 96 | Incendies | 8.3 | (2010) |
| 97 | Kimetsu no Yaiba: Mugen Ressha-Hen | 8.3 | (2020) |
| 98 | The Father | 8.3 | (I) (2020) |
| 99 | Babam ve Oglum | 8.3 | (2005) |
100 rows × 3 columns
IMDB_TOP_MOVIES
QUESTION3. Write a python program to display IMDB’s Top rated 100 Indian movies’ data (i.e. Name, IMDB rating, Year of release).
from bs4 import BeautifulSoup
import requests
import pandas as pd
indian=requests.get("https://www.imdb.com/list/ls009997493/")
hindi=BeautifulSoup(indian.content)
print(hindi.prettify())
name=hindi.find_all("h3",class_="lister-item-header")
Name=[]
for i in name:
for j in i.find_all("a"):
Name.append(j.text.replace("\n",""))
imdb_rating=hindi.find_all("div",class_="ipl-rating-star small")
Imdb_Rating=[]
for i in imdb_rating:
Imdb_Rating.append(i.text.replace("\n",""))
year_of_release=hindi.find_all("span",class_="lister-item-year text-muted unbold")
Year_of_Release=[]
for i in year_of_release:
Year_of_Release.append(i.text.replace("\n",""))
IMDB_BOLLYWOOD_MOVIES=pd.DataFrame({})
IMDB_BOLLYWOOD_MOVIES['Name']=Name[0:100]
IMDB_BOLLYWOOD_MOVIES['Imdb_Rating']=Imdb_Rating[0:100]
IMDB_BOLLYWOOD_MOVIES['Year_of_Release']=Year_of_Release[0:100]
<!DOCTYPE html>
<html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://ogp.me/ns#">
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<script type="text/javascript">
var IMDbTimer={starttime: new Date().getTime(),pt:'java'};
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadTitle", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);
</script>
<title>
IMDB Top 100 Hindi Movies - IMDb
</title>
<script>
(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadTitle", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadTitle", {wb: 1});
}
</script>
<link href="https://www.imdb.com/list/ls009997493/" rel="canonical"/>
<meta content="http://www.imdb.com/list/ls009997493/" property="og:url"/>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadIcons", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);
</script>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_desktop_32x32._CB1582158068_.png" rel="icon" sizes="32x32"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPad_retina_167x167._CB1582158068_.png" rel="icon" sizes="167x167"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/favicon_iPhone_retina_180x180._CB1582158069_.png" rel="icon" sizes="180x180"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile._CB479963088_.png" rel="apple-touch-icon"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-76x76._CB479962152_.png" rel="apple-touch-icon" sizes="76x76"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-mobile-120x120._CB479963088_.png" rel="apple-touch-icon" sizes="120x120"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/apple-touch-icon-web-152x152._CB479963088_.png" rel="apple-touch-icon" sizes="152x152"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images-ANDW73HA/android-mobile-196x196._CB479962153_.png" rel="shortcut icon" sizes="196x196"/>
<meta content="#000000" name="theme-color"/>
<link href="https://m.media-amazon.com/images/S/sash/MzfIBMq9GBucYqW.xml" rel="search" title="IMDb" type="application/opensearchdescription+xml"/>
<script>
(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadIcons", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadIcons", {wb: 1});
}
</script>
<meta content="ls009997493" property="pageId"/>
<meta content="list" property="pageType"/>
<meta content="title" property="subpageType"/>
<link href="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" rel="image_src"/>
<meta content="https://m.media-amazon.com/images/G/01/imdb/images/social/imdb_logo._CB410901634_.png" property="og:image"/>
<meta content="115109575169727" property="fb:app_id"/>
<meta content="IMDB Top 100 Hindi Movies - IMDb" property="og:title"/>
<meta content="IMDb" property="og:site_name"/>
<meta content="IMDB Top 100 Hindi Movies - IMDb" name="title"/>
<meta content="IMDB Top 100 Hindi Movies" name="description"/>
<meta content="IMDB Top 100 Hindi Movies" property="og:description"/>
<meta content="P33Y2PCAFR3V4W7ERCRT" name="request_id"/>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "CreativeWork",
"about": {
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"position": "1",
"url": "/title/tt0405508/"
},
{
"@type": "ListItem",
"position": "2",
"url": "/title/tt1187043/"
},
{
"@type": "ListItem",
"position": "3",
"url": "/title/tt0986264/"
},
{
"@type": "ListItem",
"position": "4",
"url": "/title/tt0292490/"
},
{
"@type": "ListItem",
"position": "5",
"url": "/title/tt0367110/"
},
{
"@type": "ListItem",
"position": "6",
"url": "/title/tt0169102/"
},
{
"@type": "ListItem",
"position": "7",
"url": "/title/tt1954470/"
},
{
"@type": "ListItem",
"position": "8",
"url": "/title/tt2082197/"
},
{
"@type": "ListItem",
"position": "9",
"url": "/title/tt0066763/"
},
{
"@type": "ListItem",
"position": "10",
"url": "/title/tt0374887/"
},
{
"@type": "ListItem",
"position": "11",
"url": "/title/tt1280558/"
},
{
"@type": "ListItem",
"position": "12",
"url": "/title/tt0109117/"
},
{
"@type": "ListItem",
"position": "13",
"url": "/title/tt0073707/"
},
{
"@type": "ListItem",
"position": "14",
"url": "/title/tt2356180/"
},
{
"@type": "ListItem",
"position": "15",
"url": "/title/tt0242519/"
},
{
"@type": "ListItem",
"position": "16",
"url": "/title/tt1639426/"
},
{
"@type": "ListItem",
"position": "17",
"url": "/title/tt1821480/"
},
{
"@type": "ListItem",
"position": "18",
"url": "/title/tt0375611/"
},
{
"@type": "ListItem",
"position": "19",
"url": "/title/tt0871510/"
},
{
"@type": "ListItem",
"position": "20",
"url": "/title/tt0466460/"
},
{
"@type": "ListItem",
"position": "21",
"url": "/title/tt0104561/"
},
{
"@type": "ListItem",
"position": "22",
"url": "/title/tt1562872/"
},
{
"@type": "ListItem",
"position": "23",
"url": "/title/tt1620933/"
},
{
"@type": "ListItem",
"position": "24",
"url": "/title/tt0112870/"
},
{
"@type": "ListItem",
"position": "25",
"url": "/title/tt0488414/"
},
{
"@type": "ListItem",
"position": "26",
"url": "/title/tt0456144/"
},
{
"@type": "ListItem",
"position": "27",
"url": "/title/tt0453729/"
},
{
"@type": "ListItem",
"position": "28",
"url": "/title/tt2350496/"
},
{
"@type": "ListItem",
"position": "29",
"url": "/title/tt0400234/"
},
{
"@type": "ListItem",
"position": "30",
"url": "/title/tt0296574/"
},
{
"@type": "ListItem",
"position": "31",
"url": "/title/tt0079221/"
},
{
"@type": "ListItem",
"position": "32",
"url": "/title/tt1327035/"
},
{
"@type": "ListItem",
"position": "33",
"url": "/title/tt0085743/"
},
{
"@type": "ListItem",
"position": "34",
"url": "/title/tt2283748/"
},
{
"@type": "ListItem",
"position": "35",
"url": "/title/tt0054098/"
},
{
"@type": "ListItem",
"position": "36",
"url": "/title/tt1261047/"
},
{
"@type": "ListItem",
"position": "37",
"url": "/title/tt0824316/"
},
{
"@type": "ListItem",
"position": "38",
"url": "/title/tt1093370/"
},
{
"@type": "ListItem",
"position": "39",
"url": "/title/tt0050870/"
},
{
"@type": "ListItem",
"position": "40",
"url": "/title/tt0319736/"
},
{
"@type": "ListItem",
"position": "41",
"url": "/title/tt0085913/"
},
{
"@type": "ListItem",
"position": "42",
"url": "/title/tt0096028/"
},
{
"@type": "ListItem",
"position": "43",
"url": "/title/tt0195231/"
},
{
"@type": "ListItem",
"position": "44",
"url": "/title/tt2317337/"
},
{
"@type": "ListItem",
"position": "45",
"url": "/title/tt0323013/"
},
{
"@type": "ListItem",
"position": "46",
"url": "/title/tt0220832/"
},
{
"@type": "ListItem",
"position": "47",
"url": "/title/tt0347304/"
},
{
"@type": "ListItem",
"position": "48",
"url": "/title/tt1292703/"
},
{
"@type": "ListItem",
"position": "49",
"url": "/title/tt0200087/"
},
{
"@type": "ListItem",
"position": "50",
"url": "/title/tt0373856/"
},
{
"@type": "ListItem",
"position": "51",
"url": "/title/tt0215517/"
},
{
"@type": "ListItem",
"position": "52",
"url": "/title/tt2855648/"
},
{
"@type": "ListItem",
"position": "53",
"url": "/title/tt2181931/"
},
{
"@type": "ListItem",
"position": "54",
"url": "/title/tt0072783/"
},
{
"@type": "ListItem",
"position": "55",
"url": "/title/tt1077248/"
},
{
"@type": "ListItem",
"position": "56",
"url": "/title/tt0379370/"
},
{
"@type": "ListItem",
"position": "57",
"url": "/title/tt0411469/"
},
{
"@type": "ListItem",
"position": "58",
"url": "/title/tt1230165/"
},
{
"@type": "ListItem",
"position": "59",
"url": "/title/tt0077451/"
},
{
"@type": "ListItem",
"position": "60",
"url": "/title/tt0072777/"
},
{
"@type": "ListItem",
"position": "61",
"url": "/title/tt0059246/"
},
{
"@type": "ListItem",
"position": "62",
"url": "/title/tt2359810/"
},
{
"@type": "ListItem",
"position": "63",
"url": "/title/tt0072860/"
},
{
"@type": "ListItem",
"position": "64",
"url": "/title/tt2377938/"
},
{
"@type": "ListItem",
"position": "65",
"url": "/title/tt0063404/"
},
{
"@type": "ListItem",
"position": "66",
"url": "/title/tt1266583/"
},
{
"@type": "ListItem",
"position": "67",
"url": "/title/tt0402014/"
},
{
"@type": "ListItem",
"position": "68",
"url": "/title/tt2213054/"
},
{
"@type": "ListItem",
"position": "69",
"url": "/title/tt0043306/"
},
{
"@type": "ListItem",
"position": "70",
"url": "/title/tt0048613/"
},
{
"@type": "ListItem",
"position": "71",
"url": "/title/tt0150433/"
},
{
"@type": "ListItem",
"position": "72",
"url": "/title/tt0497915/"
},
{
"@type": "ListItem",
"position": "73",
"url": "/title/tt0102636/"
},
{
"@type": "ListItem",
"position": "74",
"url": "/title/tt1288638/"
},
{
"@type": "ListItem",
"position": "75",
"url": "/title/tt0222012/"
},
{
"@type": "ListItem",
"position": "76",
"url": "/title/tt0347779/"
},
{
"@type": "ListItem",
"position": "77",
"url": "/title/tt0451919/"
},
{
"@type": "ListItem",
"position": "78",
"url": "/title/tt0499375/"
},
{
"@type": "ListItem",
"position": "79",
"url": "/title/tt0068257/"
},
{
"@type": "ListItem",
"position": "80",
"url": "/title/tt0920464/"
},
{
"@type": "ListItem",
"position": "81",
"url": "/title/tt0093578/"
},
{
"@type": "ListItem",
"position": "82",
"url": "/title/tt1241195/"
},
{
"@type": "ListItem",
"position": "83",
"url": "/title/tt0211126/"
},
{
"@type": "ListItem",
"position": "84",
"url": "/title/tt0240200/"
},
{
"@type": "ListItem",
"position": "85",
"url": "/title/tt1907761/"
},
{
"@type": "ListItem",
"position": "86",
"url": "/title/tt0098999/"
},
{
"@type": "ListItem",
"position": "87",
"url": "/title/tt1188996/"
},
{
"@type": "ListItem",
"position": "88",
"url": "/title/tt0095936/"
},
{
"@type": "ListItem",
"position": "89",
"url": "/title/tt0338490/"
},
{
"@type": "ListItem",
"position": "90",
"url": "/title/tt0069671/"
},
{
"@type": "ListItem",
"position": "91",
"url": "/title/tt0432047/"
},
{
"@type": "ListItem",
"position": "92",
"url": "/title/tt1014672/"
},
{
"@type": "ListItem",
"position": "93",
"url": "/title/tt0050188/"
},
{
"@type": "ListItem",
"position": "94",
"url": "/title/tt0473367/"
},
{
"@type": "ListItem",
"position": "95",
"url": "/title/tt1934231/"
},
{
"@type": "ListItem",
"position": "96",
"url": "/title/tt1324059/"
},
{
"@type": "ListItem",
"position": "97",
"url": "/title/tt0114234/"
},
{
"@type": "ListItem",
"position": "98",
"url": "/title/tt0076696/"
},
{
"@type": "ListItem",
"position": "99",
"url": "/title/tt1926313/"
},
{
"@type": "ListItem",
"position": "100",
"url": "/title/tt0352314/"
}
]
},
"dateModified": "2013-10-21T21:49Z",
"name": "IMDB Top 100 Hindi Movies",
"description": "These are Top 100 Bollywood movies sorted according to their IMDB Rating.\n\nCriteria to be in the list: 1.Language - Hindi. 2.Votes- Minimum 1000 votes.\n\nNote: I have not included movies that are dubbed to Hindi from another language.\n\nClick Below For IMDb 100 Worst Hindi Movies (http://www.imdb.com/list/vPL-O7dnyGA/)\n\nP.S:- This is not my list, its sorted according to the IMDb rating of the movies which the users have voted, so please try to read the description completely before commenting.\n\nAnd now I would like to thank you for reading the description. Cheers."
}
</script>
<script>
(function (win) {
win.PLAID_LOAD_FONTS_FIRED = true;
if (typeof win.FontFace !== "undefined"
&& typeof win.Promise !== "undefined") {
if (win.ue) {
win.uet("bb", "LoadRoboto", { wb: 1 });
}
var allowableLoadTime = 1000;
var startTimeInt = +new Date();
var roboto = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3Rv.woff2)',
{ style:'normal', weight: 400 });
var robotoMedium = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvTWVk.woff2)',
{ style:'normal', weight: 500 });
var robotoBold = new FontFace('Roboto',
'url(https://m.media-amazon.com/images/G/01/IMDb/cm9ib3RvQm9sZA.woff2)',
{ style:'normal', weight: 600 });
var robotoLoaded = roboto.load();
var robotoMediumLoaded = robotoMedium.load();
var robotoBoldLoaded = robotoBold.load();
win.Promise.all([robotoLoaded, robotoMediumLoaded, robotoBoldLoaded]).then(function() {
var loadTimeInt = +new Date();
var robotoLoadedCount = 0;
if ((loadTimeInt - startTimeInt) <= allowableLoadTime) {
win.document.fonts.add(roboto);
win.document.fonts.add(robotoMedium);
win.document.fonts.add(robotoBold);
robotoLoadedCount++;
}
if (win.ue) {
win.ue.count("roboto-loaded", robotoLoadedCount);
win.uet("be", "LoadRoboto", { wb: 1 });
win.uex("ld", "LoadRoboto", { wb: 1 });
}
}).catch(function() {
if (win.ue) {
win.ue.count("roboto-loaded", 0);
}
});
} else {
if (win.ue) {
win.ue.count("roboto-load-not-attempted", 1);
}
}
})(window);
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadCSS", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);
</script>
<link href="https://m.media-amazon.com/images/I/41pzfEC8F8L.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/I/41JWELoXGtL.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/r6TDeHVtyCUngwC.css" rel="stylesheet" type="text/css"/>
<!-- h=ics-c52xl-4-1a-c5a0de9d.us-east-1 -->
<!--[if IE]><link rel="stylesheet" type="text/css" href="https://m.media-amazon.com/images/S/sash/pXHSPBTKPo0GIjW.css" /><![endif]-->
<link href="https://m.media-amazon.com/images/S/sash/q88Mgd6SPmx6R1F.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/dM0$HCaK4vPEd5s.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/MEsZk7KxG2g8825.css" rel="stylesheet" type="text/css"/>
<link href="https://m.media-amazon.com/images/S/sash/$itbxPZLfCmJdmP.css" rel="stylesheet" type="text/css"/>
<noscript>
<link href="https://m.media-amazon.com/images/S/sash/CCc6Ja$8QUPPKkY.css" rel="stylesheet" type="text/css"/>
</noscript>
<script>
(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadCSS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);
</script>
<script type="text/javascript">
// ensures js doesn't die if ads service fails.
// Note that we need to define the js here, since ad js is being rendered inline after this.
(function(f) {
// Fallback javascript, when the ad Service call fails.
if((window.csm == null || window.generic == null || window.consoleLog == null)) {
if (window.console && console.log) {
console.log("one or more of window.csm, window.generic or window.consoleLog has been stubbed...");
}
}
window.csm = window.csm || { measure:f, record:f, duration:f, listen:f, metrics:{} };
window.generic = window.generic || { monitoring: { start_timing: f, stop_timing: f } };
window.consoleLog = window.consoleLog || f;
})(function() {});
</script>
<script type="text/javascript">
if (!window.RadWidget) {
window.RadWidget = {
registerReactWidgetInstance: function(input) {
window.RadWidget[input.widgetName] = window.RadWidget[input.widgetName] || [];
window.RadWidget[input.widgetName].push({
id: input.instanceId,
props: JSON.stringify(input.model)
})
},
getReactWidgetInstances: function(widgetName) {
return window.RadWidget[widgetName] || []
}
};
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_head_delivery_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadHeaderJS", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadJS", {wb: 1});
}
</script>
</head>
<body class="fixed" id="styleguide-v2">
<script>
if (typeof uet == 'function') {
uet("bb");
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_body_delivery_started');
}
</script>
<script>
if (typeof uet == 'function') {
uet("ns");
}
</script>
<style data-styled="gwOpQB iwkRT erYeKd bkeTFm diDBNJ eWjUDO LrpYY dzfmPm dFDExU RQLCk YOYgO ddqdtC hOXnzb cIKARP gTFTwO dKTgZt crQfrC OQYVG hjoCyi hoAGyu cECatH kaVyhF eIWOUD" data-styled-version="4.3.2">
/* sc-component-id: NavLogo-e02kni-0 */
.ddqdtC{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-left:0.25rem;margin-right:auto;-webkit-order:1;-ms-flex-order:1;order:1;position:relative;} @media screen and (min-width:1024px){.ddqdtC{margin-left:auto;margin-right:0.5rem;-webkit-order:0;-ms-flex-order:0;order:0;padding-left:0;}} @media (hover:hover) and (pointer:fine){.ddqdtC:focus{outline:1px dashed currentColor;}.ddqdtC:focus:active{outline:0;}.ddqdtC:before,.ddqdtC:after{border-radius:10%;bottom:0;content:'';height:100%;left:0;margin:auto;opacity:0;position:absolute;right:0;top:0;-webkit-transition:opacity .2s cubic-bezier(1,1,1,1);transition:opacity .2s cubic-bezier(1,1,1,1);width:100%;}}
/* sc-component-id: SearchTypeahead-sc-112a48v-0 */
.OQYVG li:first-child > ._3CzPBqlWRmSAoWxtvQQ5Eo{border-top:none;}
/* sc-component-id: FlyoutMenu-xq6xx0-0 */
.crQfrC{position:relative;} .crQfrC.navbar__flyout__text-button-after-mobile,.crQfrC .navbar__flyout__text-button-after-mobile{display:none;} .crQfrC .navbar__flyout__text-button-after-mobile > div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} .crQfrC .navbar__flyout--menu{top:100%;position:absolute;margin-top:.25rem;} .crQfrC.crQfrC.navbar__flyout--positionLeft .navbar__flyout--menu{left:0;right:auto;} @media screen and (min-width:600px){.crQfrC.navbar__flyout--breakpoint-m .navbar__flyout__icon-on-mobile{display:none;}.crQfrC.navbar__flyout--breakpoint-m .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} @media screen and (min-width:1024px){.crQfrC.navbar__flyout--breakpoint-l .navbar__flyout__icon-on-mobile{display:none;}.crQfrC.navbar__flyout--breakpoint-l .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} @media screen and (min-width:1280px){.crQfrC.navbar__flyout--breakpoint-xl .navbar__flyout__icon-on-mobile{display:none;}.crQfrC.navbar__flyout--breakpoint-xl .navbar__flyout__text-button-after-mobile{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} .crQfrC .navbar__flyout__button-pointer{-webkit-transition:-webkit-transform 0.2s;-webkit-transition:transform 0.2s;transition:transform 0.2s;-webkit-transform:rotateX(0);-ms-transform:rotateX(0);transform:rotateX(0);} .crQfrC.navbar__flyout--isVisible .navbar__flyout__button-pointer{-webkit-transform:rotateX(180deg);-ms-transform:rotateX(180deg);transform:rotateX(180deg);}
/* sc-component-id: SearchCategorySelector__StyledContainer-sc-18f40f7-0 */
.dKTgZt .search-category-selector__opener{border-radius:2px 0 0 2px;padding:0 0 0 0.5rem;min-height:32px;height:20px;border-right:1px solid rgba(0,0,0,0.3);} .dKTgZt _1L5qcXA4wOKR8LeHJgsqja{cursor:pointer;}
/* sc-component-id: SearchForm-dxsip9-0 */
.gTFTwO{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0;padding:0;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;} @media screen and (min-width:600px){.gTFTwO{-webkit-transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;transition:border 0.2s,background-color 0.2s,box-shadow 0.2s;}} .gTFTwO .nav-search__search-input-container{width:100%;padding-right:3.5rem;} .gTFTwO ._1-XI3_I8iwubPnQ1mmvW97{position:absolute;right:.35rem;min-width:2rem;cursor:pointer;top:.35rem;-webkit-transition:all 0.2s;transition:all 0.2s;} @media screen and (min-width:600px){.gTFTwO.q2gp5sSzXI30d2n_razRe ._1-XI3_I8iwubPnQ1mmvW97{background:transparent;opacity:1;}} .gTFTwO .imdb-header-search__input{background:transparent;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;outline:none;padding:1rem 1rem 1rem .75rem;width:100%;} @media screen and (min-width:600px){.gTFTwO .imdb-header-search__input{padding:.375em 0 .375rem .5rem;}} .gTFTwO .imdb-header-search__input::-ms-clear{display:none;}
/* sc-component-id: SearchBar-sc-1nweg6x-0 */
.hOXnzb{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;margin:0;min-height:3.5rem;opacity:0;-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px);-webkit-transition:none;transition:none;-webkit-order:3;-ms-flex-order:3;order:3;pointer-events:none;position:absolute;top:0;visibility:hidden;width:100%;z-index:1;} .hOXnzb .imdb-header-search__state-closer{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:-webkit-transform 0.2s 0.1s;-webkit-transition:transform 0.2s 0.1s;transition:transform 0.2s 0.1s;display:inline;margin:.25rem;position:absolute;right:0;top:0;} .hOXnzb .imdb-header-search__state,.hOXnzb .imdb-header-search__input,.hOXnzb .nav-search__search-submit{-moz-appearance:none;-webkit-appearance:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;} @media screen and (min-width:600px){.hOXnzb{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;margin:0 0.5rem;padding:0;min-height:2.25rem;-webkit-order:3;-ms-flex-order:3;order:3;opacity:1;visibility:visible;pointer-events:auto;position:relative;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}.hOXnzb .imdb-header-search__state,.hOXnzb .nav-search__search-submit{padding:0;}.hOXnzb .nav-search__search-submit:focus{outline:var(--ipt-focus-outline-on-base);outline-offset:1px;}.hOXnzb .imdb-header-search__state-closer{display:none;}}
/* sc-component-id: SearchBar__SearchLauncherButton-sc-1nweg6x-1 */
.hjoCyi{-webkit-transition:all 0.3s;transition:all 0.3s;opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-order:3;-ms-flex-order:3;order:3;} @media screen and (min-width:600px){.hjoCyi{-webkit-order:3;-ms-flex-order:3;order:3;}.hjoCyi.imdb-header-search__state-opener{display:none;}}
/* sc-component-id: SearchBar__MobileSearchStateToggle-sc-1nweg6x-2 */
.cIKARP:checked ~ .nav-search__search-container{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transition:opacity 0.2s,-webkit-transform 0.2s;-webkit-transition:opacity 0.2s,transform 0.2s;transition:opacity 0.2s,transform 0.2s;visibility:visible;pointer-events:auto;z-index:100;} .cIKARP:checked ~ .nav-search__search-container .nav-search__search-select,.cIKARP:checked ~ .nav-search__search-container .nav-search__search-submit{display:none;} .cIKARP:checked ~ .nav-search__search-container .imdb-header-search__state-closer{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);} .cIKARP:checked ~ .nav-search__search-container ~ .SearchBar__SearchLauncherButton-sc-1nweg6x-1{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5);-webkit-transition:all 0.3s 0.3s;transition:all 0.3s 0.3s;opacity:0;}
/* sc-component-id: Drawer__StyledContainer-sc-1h7cs9y-0 */
.bkeTFm._14--k36qjjvLW3hUWHDPb_{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;overflow:hidden;-webkit-perspective:70vh;-moz-perspective:70vh;-ms-perspective:70vh;perspective:70vh;pointer-events:none;position:fixed;right:0;top:0;visibility:hidden;z-index:100;} .bkeTFm .iRO9SK-8q3D8_287dhn28{box-shadow:none;box-sizing:border-box;height:100%;overflow-x:hidden;overflow-y:auto;position:relative;-webkit-transform:translateX(calc(-100% - 36px));-ms-transform:translateX(calc(-100% - 36px));transform:translateX(calc(-100% - 36px));-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center;-webkit-transition:all 0.3s,box-shadow 0s;transition:all 0.3s,box-shadow 0s;width:280px;z-index:2;-webkit-overflow-scroll:touch;} .bkeTFm ._1iCYg55DI6ds7d3KVrdYBX{box-sizing:border-box;display:block;height:100%;left:0;opacity:0;position:absolute;top:0;-webkit-transition:opacity 0.3s;transition:opacity 0.3s;visibility:hidden;width:100%;will-change:opacity;z-index:1;} .bkeTFm ._3rHHDKyPLOjL8tGKHWMRza{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;min-height:3.5rem;margin-bottom:0.5rem;padding:0.25rem;} .bkeTFm ._2RzUkzyrsjx_BPIQ5uoj5s{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;} ._146x-LuQBSfM9yosRvjSGF:checked ~ .bkeTFm._14--k36qjjvLW3hUWHDPb_{pointer-events:auto;visibility:visible;} ._146x-LuQBSfM9yosRvjSGF:checked ~ .bkeTFm._14--k36qjjvLW3hUWHDPb_ > .iRO9SK-8q3D8_287dhn28{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);box-shadow:0px 11px 15px -7px rgba(var(--ipt-baseAlt-rgb),0.2),0px 24px 38px 3px rgba(var(--ipt-baseAlt-rgb),0.14),0px 9px 46px 8px rgba(var(--ipt-baseAlt-rgb),0.12);} ._146x-LuQBSfM9yosRvjSGF:checked ~ .bkeTFm._14--k36qjjvLW3hUWHDPb_ > ._1iCYg55DI6ds7d3KVrdYBX{opacity:0.5;visibility:visible;} @media screen and (min-width:1024px){.bkeTFm .iRO9SK-8q3D8_287dhn28{width:100%;-webkit-transform:translateY(calc(-100%));-ms-transform:translateY(calc(-100%));transform:translateY(calc(-100%));padding:2rem 0;}.bkeTFm ._3rHHDKyPLOjL8tGKHWMRza{background:none;max-width:1024px;margin:auto;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:0 1rem;}.bkeTFm ._3bRJYEaOz1BKUQYqW6yb29{max-width:1024px;margin:auto;}.bkeTFm .WNY8DBPCS1ZbiSd7NoqdP{display:inline;}}
/* sc-component-id: NavLink-sc-19k0khm-0 */
.LrpYY .ipc-icon{opacity:0.5;-webkit-transition:opacity 0.2s;transition:opacity 0.2s;} .LrpYY:hover .ipc-icon{opacity:1;} @media screen and (max-width:479px){.LrpYY.nav-link--hideXS{display:none;}} @media screen and (min-width:480px) and (max-width:599px){.LrpYY.nav-link--hideS{display:none;}} @media screen and (min-width:600px) and (max-width:1023px){.LrpYY.nav-link--hideM{display:none;}} @media screen and (min-width:1024px) and (max-width:1279px){.LrpYY.nav-link--hideL{display:none;}} @media screen and (min-width:1280px){.LrpYY.nav-link--hideXL{display:none;}}
/* sc-component-id: NavLinkCategory__StyledContainer-sc-1zvm8t-0 */
.eWjUDO ._2vjThdvAXrHx6CofJjm03w{cursor:pointer;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-top:1px solid transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;height:3rem;margin:0;padding:0 1rem;-webkit-transition:color 0.1s ease-in,border-color 0.1s ease-in,opacity 0.12s ease-in;transition:color 0.1s ease-in,border-color 0.1s ease-in,opacity 0.12s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;} .eWjUDO ._2vjThdvAXrHx6CofJjm03w:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;} .eWjUDO ._1tLXJMH37mh4UmvfVF8swF{padding-right:0.75rem;} .eWjUDO ._2aunAih-uMfbdgTUIjnQMd{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;overflow:hidden;padding-right:0.75rem;text-overflow:ellipsis;white-space:nowrap;} .eWjUDO ._2BeDp2pKthfMnxArm4lS0T{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);} .eWjUDO ._1tLXJMH37mh4UmvfVF8swF,.eWjUDO ._2BeDp2pKthfMnxArm4lS0T{opacity:0.5;-webkit-transition:all 0.2s;transition:all 0.2s;} .eWjUDO ._2vjThdvAXrHx6CofJjm03w:focus ._2BeDp2pKthfMnxArm4lS0T,.eWjUDO ._2vjThdvAXrHx6CofJjm03w:hover ._2BeDp2pKthfMnxArm4lS0T,.eWjUDO ._2vjThdvAXrHx6CofJjm03w:focus ._1tLXJMH37mh4UmvfVF8swF,.eWjUDO ._2vjThdvAXrHx6CofJjm03w:hover ._1tLXJMH37mh4UmvfVF8swF{opacity:1;} .eWjUDO ._1S9IOoNAVMPB2VikET3Lr2{overflow:hidden;border-bottom:1px solid transparent;-webkit-transition:border-color 0.1s ease-in,height 0.2s;transition:border-color 0.1s ease-in,height 0.2s;} .eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ span ._2vjThdvAXrHx6CofJjm03w ._1tLXJMH37mh4UmvfVF8swF{opacity:1;} .eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ span ._2vjThdvAXrHx6CofJjm03w ._2BeDp2pKthfMnxArm4lS0T{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);} .eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ span ._1S9IOoNAVMPB2VikET3Lr2{display:block;} .eWjUDO:nth-of-type(1) ._2vjThdvAXrHx6CofJjm03w{border-top:none;} @media screen and (min-width:1024px){.eWjUDO.noMarginItem ._2vjThdvAXrHx6CofJjm03w{margin-top:0;}} @media screen and (min-width:1024px){.eWjUDO{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;}.eWjUDO ._2vjThdvAXrHx6CofJjm03w{pointer-events:none;margin-top:1.5rem;height:3rem;border:none;}.eWjUDO .s6lVaL5MYgQM-fYJ9KWp7:checked ~ ._2Q0QZxgQqVpU0nQBqv1xlY ._2vjThdvAXrHx6CofJjm03w ._2aunAih-uMfbdgTUIjnQMd{color:inherit;}.eWjUDO ._1S9IOoNAVMPB2VikET3Lr2{visibility:inherit;height:auto !important;border:0;}.eWjUDO ._2BeDp2pKthfMnxArm4lS0T{display:none;}.eWjUDO ._1tLXJMH37mh4UmvfVF8swF{color:var(--ipt-on-baseAlt-accent1-color);opacity:1;}.eWjUDO .ipc-list__item{height:2rem;}.eWjUDO .ipc-list--baseAlt .ipc-list__item:hover{background:none;-webkit-text-decoration:underline;text-decoration:underline;}} @media screen and (max-width:479px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideXS{display:none;}} @media screen and (min-width:480px) and (max-width:599px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideS{display:none;}} @media screen and (min-width:600px) and (max-width:1023px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideM{display:none;}} @media screen and (min-width:1024px) and (max-width:1279px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideL{display:none;}} @media screen and (min-width:1280px){.eWjUDO._2BpsDlqEMlo9unX-C84Nji--hideXL{display:none;}}
/* sc-component-id: NavDynamicCategoryList__CategoryGroupContainer-f186ms-0 */
@media screen and (min-width:1024px){.dzfmPm{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;}}
/* sc-component-id: NavDynamicCategoryList__EmptyContainer-f186ms-1 */
@media screen and (min-width:1024px){.dFDExU{-webkit-flex-basis:33%;-ms-flex-preferred-size:33%;flex-basis:33%;}}
/* sc-component-id: NavLinkCategoryList__StyledContainer-sc-13vymju-0 */
.diDBNJ ._1cBEhLbHn9YeCkfPvo9USU{list-style:none;margin:0.5rem 0;opacity:0.2;} .diDBNJ ._3xW8qYlqcCPv5fOHeXBer5{margin-bottom:3rem;margin-top:1.5rem;padding:1rem;height:auto;} @media screen and (min-width:1024px){.diDBNJ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}.diDBNJ ._1BC0pBnjYqz3wST1u3CwmG{display:none;}.diDBNJ ._3xW8qYlqcCPv5fOHeXBer5{-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;display:none;}.diDBNJ:focus{outline:var(--ipt-focus-outline-on-baseAlt);outline-offset:1px;}}
/* sc-component-id: NavLinkCategoryList__LogoNavLink-sc-13vymju-1 */
.RQLCk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}
/* sc-component-id: NavLinkCategoryList__TextNavLink-sc-13vymju-2 */
.YOYgO{margin-top:.25rem;}
/* sc-component-id: HamburgerMenu-k5mvoq-0 */
.erYeKd{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-order:0;-ms-flex-order:0;order:0;} .erYeKd.desktop{display:none;} @media screen and (min-width:1024px){.erYeKd{-webkit-order:1;-ms-flex-order:1;order:1;}.erYeKd.mobile{display:none;}.erYeKd.desktop{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}
/* sc-component-id: UserMenu-sc-1poz515-0 */
.eIWOUD{-webkit-order:6;-ms-flex-order:6;order:6;} @media screen and (min-width:600px){.eIWOUD .navbar__user-menu__username-divider,.eIWOUD .navbar__user-menu__username{display:none;}} @media screen and (min-width:1024px){.eIWOUD{-webkit-order:7;-ms-flex-order:7;order:7;}} .eIWOUD .navbar__user-menu-toggle__button{padding-right:0.25rem;} .eIWOUD .navbar__user-name{max-width:160px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}
/* sc-component-id: NavWatchlistButton-sc-1b65w5j-0 */
.kaVyhF{-webkit-order:5;-ms-flex-order:5;order:5;display:none;} @media screen and (min-width:1024px){.kaVyhF{-webkit-order:6;-ms-flex-order:6;order:6;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;}} .kaVyhF .imdb-header__watchlist-button-count{margin-left:0.5rem;background:var(--ipt-on-base-accent1-color);color:var(--ipt-on-accent1-color);padding:0 0.4rem;border-radius:10px;text-align:center;} .kaVyhF .ipc-button__text{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}
/* sc-component-id: NavProFlyout-sc-1cjctnc-0 */
.hoAGyu{-webkit-order:4;-ms-flex-order:4;order:4;} @media screen and (min-width:1024px){.hoAGyu{-webkit-order:4;-ms-flex-order:4;order:4;}} .hoAGyu .navbar__imdbpro-menu-toggle__name{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;} .hoAGyu .navbar__imdbpro-content .navbar__flyout--menu{background-image:url(//m.media-amazon.com/images/G/01/imdb/images/navbar/imdbpro_navbar_menu_bg-3083451252._V_.png);background-size:cover;padding-left:17px;padding-bottom:25px;padding-top:25px;color:white;font-weight:bold;} .hoAGyu .navbar__imdbpro-imdb-pro-ad{background-repeat:no-repeat;color:white;cursor:pointer;width:573px;overflow:hidden;border-radius:8px;left:initial;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{display:inline-block;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__title{color:white;line-height:1.3em;margin-bottom:10px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__line{cursor:inherit;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__link{display:inline-block;-webkit-text-decoration:none;text-decoration:none;vertical-align:middle;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content,.hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__image{vertical-align:top;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content{font-family:'Arial';margin-left:15px;width:400px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__line{display:list-item;font-size:12px;list-style-position:inside;list-style-type:disc;margin:0px;padding:.1rem 0;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-ad__content .imdb-pro-ad__title{font-size:15px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button{margin-top:15px;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text{fill:#111111;font-size:13px;font-weight:normal;} .hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button svg:hover rect,.hoAGyu .navbar__imdbpro-imdb-pro-ad .imdb-pro-new__button text:hover rect{fill:#f7dd95;} .hoAGyu .navbar__imdbpro-content .sub_nav{background-color:#f2f2f2;border-bottom-left-radius:10px;border-bottom-right-radius:10px;box-shadow:0 2px 5px rgba(0,0,0,0.6);color:#999;height:325px;} .hoAGyu .navbar__imdbpro-content .sub_nav h5{color:#A58500;margin:20px 0 10px;position:relative;}
/* sc-component-id: LegacyLoginNode-sc-1oajtws-0 */
.iwkRT{display:none;}
/* sc-component-id: Root__Header-sc-7p0yen-0 */
.gwOpQB{padding:0.25rem;margin:0;position:relative;z-index:1000;min-height:3.5rem;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;} .gwOpQB a{color:inherit;} .gwOpQB .navbar__inner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;width:100vw;margin:0;} @media screen and (min-width:600px){.gwOpQB .navbar__inner{padding:0 .75rem;}} @media screen and (min-width:1024px){.gwOpQB .navbar__inner{width:100%;margin:0 auto;}} .gwOpQB label{margin-bottom:0;}
/* sc-component-id: Root__Separator-sc-7p0yen-1 */
.cECatH{border:1px solid rgba(var(--ipt-on-baseAlt-rgb),.16);-webkit-order:5;-ms-flex-order:5;order:5;width:1px;height:2rem;margin:0 .5rem;} @media screen and (max-width:600px){.cECatH{display:none;-webkit-order:7;-ms-flex-order:7;order:7;}}
</style>
<div id="beee0dd7-1f16-4fae-bdca-5a5379f37b83">
<nav class="FHCtKBINjbqzCITNiccU0 imdb-header imdb-header--react Root__Header-sc-7p0yen-0 gwOpQB" id="imdbHeader">
<div class="imdb-header__login-state-node" id="nblogin">
</div>
<div class="ipc-page-content-container ipc-page-content-container--center navbar__inner" role="presentation">
<label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-icon-button jOOJQ0waXoTX6ZSthGtum HamburgerMenu-k5mvoq-0 erYeKd mobile ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen" role="button" tabindex="0" title="Open Navigation Drawer">
<svg class="ipc-icon ipc-icon--menu" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z">
</path>
</svg>
</label>
<label aria-disabled="false" aria-label="Open Navigation Drawer" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button jOOJQ0waXoTX6ZSthGtum HamburgerMenu-k5mvoq-0 erYeKd desktop" for="imdbHeader-navDrawer" id="imdbHeader-navDrawerOpen--desktop" role="button" tabindex="0">
<svg class="ipc-icon ipc-icon--menu ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M4 18h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm0-5h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM3 7c0 .55.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1z">
</path>
</svg>
<div class="ipc-button__text">
Menu
</div>
</label>
<input aria-hidden="true" class="_146x-LuQBSfM9yosRvjSGF" hidden="" id="imdbHeader-navDrawer" name="imdbHeader-navDrawer" type="checkbox"/>
<aside class="_14--k36qjjvLW3hUWHDPb_ _32i38MKalFVUkNAqPm88ln imdb-header__nav-drawer Drawer__StyledContainer-sc-1h7cs9y-0 bkeTFm" data-testid="drawer" role="presentation">
<div aria-hidden="true" class="iRO9SK-8q3D8_287dhn28" data-testid="panel" role="presentation">
<div class="_3rHHDKyPLOjL8tGKHWMRza" data-testid="panel-header" role="presentation">
<a href="/?ref_=nv_home">
<svg class="ipc-logo WNY8DBPCS1ZbiSd7NoqdP" height="56" version="1.1" viewbox="0 0 64 32" width="98" xmlns="http://www.w3.org/2000/svg">
<g fill="#F5C518">
<rect height="100%" rx="4" width="100%" x="0" y="0">
</rect>
</g>
<g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)">
<polygon points="0 18 5 18 5 0 0 0">
</polygon>
<path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z">
</path>
<path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z">
</path>
<path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z">
</path>
</g>
</svg>
</a>
<label aria-disabled="false" aria-label="Close Navigation Drawer" class="ipc-icon-button _2RzUkzyrsjx_BPIQ5uoj5s ipc-icon-button--baseAlt ipc-icon-button--onBase" for="imdbHeader-navDrawer" role="button" tabindex="0" title="Close Navigation Drawer">
<svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z">
</path>
</svg>
</label>
</div>
<div class="_3bRJYEaOz1BKUQYqW6yb29" data-testid="panel-content" role="presentation">
<div class="_3wpok4xkiX-9E61ruFL_RA NavLinkCategoryList__StyledContainer-sc-13vymju-0 diDBNJ" role="presentation">
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="mov" hidden="" id="nav-link-categories-mov" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Movies Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-mov" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--movie" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Movies
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/calendar/?ref_=nv_mv_cal" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Release Calendar
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/list/ls016522954/?ref_=nv_tvv_dvd" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
DVD & Blu-ray Releases
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/top/?ref_=nv_mv_250" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Top Rated Movies
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/moviemeter/?ref_=nv_mv_mpm" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Movies
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/feature/genre/?ref_=nv_ch_gr" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Browse Movies by Genre
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/boxoffice/?ref_=nv_ch_cht" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Top Box Office
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/showtimes/?ref_=nv_mv_sh" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Showtimes & Tickets
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/movies-in-theaters/?ref_=nv_mv_inth" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
In Theaters
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/coming-soon/?ref_=nv_mv_cs" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Coming Soon
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/news/movie/?ref_=nv_nw_mv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Movie News
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/india/toprated/?ref_=nv_mv_in" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
India Movie Spotlight
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="NavDynamicCategoryList__CategoryGroupContainer-f186ms-0 dzfmPm" data-testid="grouped-link-category">
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="tvshows" hidden="" id="nav-link-categories-tvshows" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand TV Shows Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-tvshows" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--television" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
TV Shows
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/whats-on-tv/?ref_=nv_tv_ontv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
What's on TV & Streaming
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/toptv/?ref_=nv_tvv_250" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Top Rated Shows
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/chart/tvmeter/?ref_=nv_tvv_mptv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Shows
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/feature/genre/" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Browse TV Shows by Genre
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/news/tv/?ref_=nv_nw_tv" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
TV News
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/india/tv?ref_=nv_tv_in" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
India TV Spotlight
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="video" hidden="" id="nav-link-categories-video" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Watch Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-video" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--video-library" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M3 6c-.55 0-1 .45-1 1v13c0 1.1.9 2 2 2h13c.55 0 1-.45 1-1s-.45-1-1-1H5c-.55 0-1-.45-1-1V7c0-.55-.45-1-1-1zm17-4H8c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-8 12.5v-9l5.47 4.1c.27.2.27.6 0 .8L12 14.5z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Watch
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/what-to-watch/?ref_=nv_watch" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
What to Watch
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/trailers/?ref_=nv_mv_tr" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Latest Trailers
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/originals/?ref_=nv_sf_ori" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
IMDb Originals
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/imdbpicks/?ref_=nv_pi" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
IMDb Picks
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/podcasts/?ref_=nv_pod" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
IMDb Podcasts
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="awards" hidden="" id="nav-link-categories-awards" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Awards & Events Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-awards" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--star-circle-filled" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.23 15.39L12 15.45l-3.22 1.94a.502.502 0 0 1-.75-.54l.85-3.66-2.83-2.45a.505.505 0 0 1 .29-.88l3.74-.32 1.46-3.45c.17-.41.75-.41.92 0l1.46 3.44 3.74.32a.5.5 0 0 1 .28.88l-2.83 2.45.85 3.67c.1.43-.36.77-.74.54z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Awards & Events
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/oscars/?ref_=nv_ev_acd" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Oscars
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://m.imdb.com/feature/bestpicture/?ref_=nv_ch_osc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Best Picture Winners
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/search/title/?count=100&groups=oscar_best_picture_winners&sort=year%2Cdesc&ref_=nv_ch_osc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Best Picture Winners
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/golden-globes/?ref_=nv_ev_gg" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Golden Globes
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/emmys/?ref_=nv_ev_rte" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Emmys
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/starmeterawards/?ref_=nv_ev_sma" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
STARmeter Awards
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/comic-con/?ref_=nv_ev_comic" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
San Diego Comic-Con
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/nycc/?ref_=nv_ev_nycc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
New York Comic-Con
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/sundance/?ref_=nv_ev_sun" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Sundance Film Festival
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/toronto/?ref_=nv_ev_tor" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Toronto Int'l Film Festival
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/awards-central/?ref_=nv_ev_awrd" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Awards Central
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/festival-central/?ref_=nv_ev_fc" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Festival Central
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/event/all/?ref_=nv_ev_all" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
All Events
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji noMarginItem NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="celebs" hidden="" id="nav-link-categories-celebs" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Celebs Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-celebs" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--people" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Celebs
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/feature/bornondate/?ref_=nv_cel_brn" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Born Today
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideL nav-link--hideXL NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://m.imdb.com/chart/starmeter/?ref_=nv_cel_brn" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Celebs
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link nav-link--hideXS nav-link--hideS nav-link--hideM NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://www.imdb.com/search/name/?match_all=true&ref_=nv_cel_m" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Most Popular Celebs
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/news/celebrity/?ref_=nv_cel_nw" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Celebrity News
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<div class="NavDynamicCategoryList__EmptyContainer-f186ms-1 dFDExU" data-testid="nav-link-category">
</div>
<div class="_2BpsDlqEMlo9unX-C84Nji noMarginItem NavLinkCategory__StyledContainer-sc-1zvm8t-0 eWjUDO" data-testid="nav-link-category" role="presentation">
<input aria-hidden="true" class="s6lVaL5MYgQM-fYJ9KWp7" data-category-id="comm" hidden="" id="nav-link-categories-comm" name="nav-categories-list" tabindex="-1" type="radio"/>
<span class="_2Q0QZxgQqVpU0nQBqv1xlY">
<label aria-label="Expand Community Nav Links" class="_2vjThdvAXrHx6CofJjm03w" data-testid="category-expando" for="nav-link-categories-comm" role="button" tabindex="0">
<span class="_1tLXJMH37mh4UmvfVF8swF">
<svg class="ipc-icon ipc-icon--earth" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z">
</path>
</svg>
</span>
<span class="_2aunAih-uMfbdgTUIjnQMd">
Community
</span>
<span class="_2BeDp2pKthfMnxArm4lS0T">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</label>
<div aria-expanded="false" aria-hidden="true" class="_1S9IOoNAVMPB2VikET3Lr2" data-testid="list-container">
<div class="_1IQgIe3JwGh2arzItRgYN3" role="presentation">
<ul aria-orientation="vertical" class="ipc-list _1gB7giE3RrFWXvlzwjWk-q ipc-list--baseAlt" role="menu">
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://help.imdb.com/imdb?ref_=cons_nb_hlp" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Help Center
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="https://contribute.imdb.com/czone?ref_=nv_cm_cz" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Contributor Zone
</span>
</a>
<a aria-disabled="false" class="ipc-list__item nav-link NavLink-sc-19k0khm-0 LrpYY ipc-list__item--indent-one" href="/poll/?ref_=nv_cm_pl" role="menuitem" tabindex="-1">
<span class="ipc-list-item__text" role="presentation">
Polls
</span>
</a>
</ul>
</div>
</div>
</span>
</div>
<a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-list__item nav-link _3xW8qYlqcCPv5fOHeXBer5 NavLink-sc-19k0khm-0 LrpYY" href="https://pro.imdb.com?ref_=cons_nb_hm&rf=cons_nb_hm" role="menuitem" tabindex="0" target="_blank">
<span class="ipc-list-item__text" role="presentation">
<div class="_33PK8nBHiT1fGjnfXwum3v NavLinkCategoryList__LogoNavLink-sc-13vymju-1 RQLCk">
<svg class="ipc-logo" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg">
<g fill="currentColor">
<rect height="12.34" width="3.21" x="0" y="1">
</rect>
<path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z">
</path>
<path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z">
</path>
<path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z">
</path>
<path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z">
</path>
<path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z">
</path>
<path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z">
</path>
</g>
</svg>
<div class="NavLinkCategoryList__TextNavLink-sc-13vymju-2 YOYgO">
For Industry Professionals
</div>
</div>
</span>
<span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation">
<svg class="ipc-icon ipc-icon--launch" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M16 16.667H8A.669.669 0 0 1 7.333 16V8c0-.367.3-.667.667-.667h3.333c.367 0 .667-.3.667-.666C12 6.3 11.7 6 11.333 6h-4C6.593 6 6 6.6 6 7.333v9.334C6 17.4 6.6 18 7.333 18h9.334C17.4 18 18 17.4 18 16.667v-4c0-.367-.3-.667-.667-.667-.366 0-.666.3-.666.667V16c0 .367-.3.667-.667.667zm-2.667-10c0 .366.3.666.667.666h1.727L9.64 13.42a.664.664 0 1 0 .94.94l6.087-6.087V10c0 .367.3.667.666.667.367 0 .667-.3.667-.667V6h-4c-.367 0-.667.3-.667.667z">
</path>
</svg>
</span>
</a>
</div>
</div>
</div>
<label aria-hidden="true" aria-label="Close Navigation Drawer" class="_1iCYg55DI6ds7d3KVrdYBX" data-testid="backdrop" for="imdbHeader-navDrawer" role="button" tabindex="0">
</label>
</aside>
<a aria-label="Home" class="NavLogo-e02kni-0 ddqdtC imdb-header__logo-link _3XaDsUnZG7ZfFqFF37dZPv" href="/?ref_=nv_home" id="home_img_holder">
<svg class="ipc-logo" height="32" id="home_img" version="1.1" viewbox="0 0 64 32" width="64" xmlns="http://www.w3.org/2000/svg">
<g fill="#F5C518">
<rect height="100%" rx="4" width="100%" x="0" y="0">
</rect>
</g>
<g fill="#000000" fill-rule="nonzero" transform="translate(8.000000, 7.000000)">
<polygon points="0 18 5 18 5 0 0 0">
</polygon>
<path d="M15.6725178,0 L14.5534833,8.40846934 L13.8582008,3.83502426 C13.65661,2.37009263 13.4632474,1.09175121 13.278113,0 L7,0 L7,18 L11.2416347,18 L11.2580911,6.11380679 L13.0436094,18 L16.0633571,18 L17.7583653,5.8517865 L17.7707076,18 L22,18 L22,0 L15.6725178,0 Z">
</path>
<path d="M24,18 L24,0 L31.8045586,0 C33.5693522,0 35,1.41994415 35,3.17660424 L35,14.8233958 C35,16.5777858 33.5716617,18 31.8045586,18 L24,18 Z M29.8322479,3.2395236 C29.6339219,3.13233348 29.2545158,3.08072342 28.7026524,3.08072342 L28.7026524,14.8914865 C29.4312846,14.8914865 29.8796736,14.7604764 30.0478195,14.4865461 C30.2159654,14.2165858 30.3021941,13.486105 30.3021941,12.2871637 L30.3021941,5.3078959 C30.3021941,4.49404499 30.272014,3.97397442 30.2159654,3.74371416 C30.1599168,3.5134539 30.0348852,3.34671372 29.8322479,3.2395236 Z">
</path>
<path d="M44.4299079,4.50685823 L44.749518,4.50685823 C46.5447098,4.50685823 48,5.91267586 48,7.64486762 L48,14.8619906 C48,16.5950653 46.5451816,18 44.749518,18 L44.4299079,18 C43.3314617,18 42.3602746,17.4736618 41.7718697,16.6682739 L41.4838962,17.7687785 L37,17.7687785 L37,0 L41.7843263,0 L41.7843263,5.78053556 C42.4024982,5.01015739 43.3551514,4.50685823 44.4299079,4.50685823 Z M43.4055679,13.2842155 L43.4055679,9.01907814 C43.4055679,8.31433946 43.3603268,7.85185468 43.2660746,7.63896485 C43.1718224,7.42607505 42.7955881,7.2893916 42.5316822,7.2893916 C42.267776,7.2893916 41.8607934,7.40047379 41.7816216,7.58767002 L41.7816216,9.01907814 L41.7816216,13.4207851 L41.7816216,14.8074788 C41.8721037,15.0130276 42.2602358,15.1274059 42.5316822,15.1274059 C42.8031285,15.1274059 43.1982131,15.0166981 43.281155,14.8074788 C43.3640968,14.5982595 43.4055679,14.0880581 43.4055679,13.2842155 Z">
</path>
</g>
</svg>
</a>
<input aria-hidden="true" class="imdb-header-search__state EL4bTiUhQdfIvyX_PMRVv SearchBar__MobileSearchStateToggle-sc-1nweg6x-2 cIKARP" hidden="" id="navSearch-searchState" name="navSearch-searchState" type="checkbox"/>
<div class="nav-search__search-container _2cVsg1cgtNxl8NEGDHTPH6 SearchBar-sc-1nweg6x-0 hOXnzb" id="suggestion-search-container">
<form action="/find" class="_19kygDgP4Og4wL_TIXtDmm imdb-header__search-form SearchForm-dxsip9-0 gTFTwO" id="nav-search-form" method="get" name="nav-search-form" role="search">
<div class="search-category-selector SearchCategorySelector__StyledContainer-sc-18f40f7-0 dKTgZt">
<div class="FlyoutMenu-xq6xx0-0 crQfrC navbar__flyout--breakpoint-m navbar__flyout--positionLeft">
<label aria-disabled="false" aria-label="All" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-base ipc-button--theme-base ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile search-category-selector__opener P7UFTypc7bsdHDd2RHdil nav-search-form__categories" for="navbar-search-category-select" role="button" tabindex="0">
<div class="ipc-button__text">
All
<svg class="ipc-icon ipc-icon--arrow-drop-down navbar__flyout__button-pointer" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M8.71 11.71l2.59 2.59c.39.39 1.02.39 1.41 0l2.59-2.59c.63-.63.18-1.71-.71-1.71H9.41c-.89 0-1.33 1.08-.7 1.71z">
</path>
</svg>
</div>
</label>
<input aria-hidden="true" class="ipc-menu__focused-state" hidden="" id="navbar-search-category-select" name="navbar-search-category-select" tabindex="-1" type="checkbox"/>
<div class="ipc-menu mdc-menu ipc-menu--not-initialized ipc-menu--on-baseAlt ipc-menu--anchored ipc-menu--with-checkbox ipc-menu--expand-from-top-left navbar__flyout--menu" data-menu-id="navbar-search-category-select" role="presentation">
<div class="ipc-menu__items mdc-menu__items" role="presentation">
<span id="navbar-search-category-select-contents">
<ul aria-orientation="vertical" class="ipc-list _2crW0ewf49BFHCKEEUJ_9o ipc-list--baseAlt" role="menu">
<a aria-disabled="false" aria-label="All" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja _3lrXaniHRqyCb5hUFHbcds" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--search _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
</path>
</svg>
All
</span>
</a>
<a aria-disabled="false" aria-label="Titles" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--movie _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18 4v1h-2V4c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1H6V4c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-1h2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h2v1c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1s-1 .45-1 1zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z">
</path>
</svg>
Titles
</span>
</a>
<a aria-disabled="false" aria-label="TV Episodes" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--television _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1h5c1.1 0 1.99-.9 1.99-2L23 5a2 2 0 0 0-2-2zm-1 14H4c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1z">
</path>
</svg>
TV Episodes
</span>
</a>
<a aria-disabled="false" aria-label="Celebs" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--people _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05.02.01.03.03.04.04 1.14.83 1.93 1.94 1.93 3.41V18c0 .35-.07.69-.18 1H22c.55 0 1-.45 1-1v-1.5c0-2.33-4.67-3.5-7-3.5z">
</path>
</svg>
Celebs
</span>
</a>
<a aria-disabled="false" aria-label="Companies" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--business _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M12 7V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V9c0-1.1-.9-2-2-2h-8zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm9 12h-7v-2h2v-2h-2v-2h2v-2h-2V9h7c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1zm-1-8h-2v2h2v-2zm0 4h-2v2h2v-2z">
</path>
</svg>
Companies
</span>
</a>
<a aria-disabled="false" aria-label="Keywords" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--label _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M17.63 5.84C17.27 5.33 16.67 5 16 5L5 5.01C3.9 5.01 3 5.9 3 7v10c0 1.1.9 1.99 2 1.99L16 19c.67 0 1.27-.33 1.63-.84l3.96-5.58a.99.99 0 0 0 0-1.16l-3.96-5.58z">
</path>
</svg>
Keywords
</span>
</a>
<li class="ipc-list-divider" role="separator">
</li>
<a aria-disabled="false" class="ipc-list__item _1L5qcXA4wOKR8LeHJgsqja" href="https://www.imdb.com/search/" role="menuitem" tabindex="0">
<span class="ipc-list-item__text" role="presentation">
<svg class="ipc-icon ipc-icon--find-in-page _2re8nTkPmRXI_TBcLnh1u8" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M20 19.59V8.83c0-.53-.21-1.04-.59-1.41l-4.83-4.83c-.37-.38-.88-.59-1.41-.59H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c.45 0 .85-.15 1.19-.4l-4.43-4.43c-.86.56-1.89.88-3 .82-2.37-.11-4.4-1.96-4.72-4.31a5.013 5.013 0 0 1 5.83-5.61c1.95.33 3.57 1.85 4 3.78.33 1.46.01 2.82-.7 3.9L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z">
</path>
</svg>
Advanced Search
</span>
<span class="ipc-list-item__icon ipc-list-item__icon--post" role="presentation">
<svg class="ipc-icon ipc-icon--chevron-right" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M9.29 6.71a.996.996 0 0 0 0 1.41L13.17 12l-3.88 3.88a.996.996 0 1 0 1.41 1.41l4.59-4.59a.996.996 0 0 0 0-1.41L10.7 6.7c-.38-.38-1.02-.38-1.41.01z">
</path>
</svg>
</span>
</a>
</ul>
</span>
</div>
</div>
</div>
</div>
<div class="nav-search__search-input-container SearchTypeahead-sc-112a48v-0 OQYVG">
<div aria-expanded="false" aria-haspopup="listbox" aria-owns="react-autowhatever-1" class="react-autosuggest__container" role="combobox">
<input aria-autocomplete="list" aria-controls="react-autowhatever-1" aria-label="Search IMDb" autocapitalize="off" autocomplete="off" autocorrect="off" class="imdb-header-search__input _3gDVKsXm3b_VAMhhSw1haV react-autosuggest__input" id="suggestion-search" name="q" placeholder="Search IMDb" type="text" value=""/>
</div>
</div>
<button aria-label="Submit Search" class="nav-search__search-submit _1-XI3_I8iwubPnQ1mmvW97" id="suggestion-search-button" type="submit">
<svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
</path>
</svg>
</button>
<input name="ref_" type="hidden" value="nv_sr_sm"/>
</form>
<label aria-disabled="false" aria-label="Close Search" class="ipc-icon-button imdb-header-search__state-closer ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchClose" role="button" tabindex="0" title="Close Search">
<svg class="ipc-icon ipc-icon--clear" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4z">
</path>
</svg>
</label>
</div>
<label aria-disabled="false" aria-label="Open Search" class="ipc-icon-button imdb-header-search__state-opener SearchBar__SearchLauncherButton-sc-1nweg6x-1 hjoCyi ipc-icon-button--baseAlt ipc-icon-button--onBase" for="navSearch-searchState" id="imdbHeader-searchOpen" role="button" tabindex="0" title="Open Search">
<svg class="ipc-icon ipc-icon--magnify" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0V0z" fill="none">
</path>
<path d="M15.5 14h-.79l-.28-.27a6.5 6.5 0 0 0 1.48-5.34c-.47-2.78-2.79-5-5.59-5.34a6.505 6.505 0 0 0-7.27 7.27c.34 2.8 2.56 5.12 5.34 5.59a6.5 6.5 0 0 0 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
</path>
</svg>
</label>
<div class="navbar__imdbpro NavProFlyout-sc-1cjctnc-0 hoAGyu">
<div class="navbar__imdbpro-content FlyoutMenu-xq6xx0-0 crQfrC navbar__flyout--breakpoint-l">
<a aria-disabled="false" aria-label="Go To IMDb Pro" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button navbar__flyout__text-button-after-mobile navbar__imdb-pro--toggle" href="https://pro.imdb.com/login/ap?u=/login/lwa&imdbPageAction=signUp&rf=cons_nb_hm&ref_=cons_nb_hm" role="button" tabindex="0">
<div class="ipc-button__text">
<svg class="ipc-logo navbar__imdbpro-menu-toggle__name" height="14" version="1.1" viewbox="0 0 52 14" width="52" xmlns="http://www.w3.org/2000/svg">
<g fill="currentColor">
<rect height="12.34" width="3.21" x="0" y="1">
</rect>
<path d="M10,1 L9.3,6.76 L8.84,3.63 C8.7,2.62 8.58,1.75 8.45,1 L4.3,1 L4.3,13.34 L7.11,13.34 L7.11,5.19 L8.3,13.34 L10.3,13.34 L11.42,5 L11.42,13.33 L14.22,13.33 L14.22,1 L10,1 Z">
</path>
<path d="M19.24,3.22 C19.3711159,3.29185219 19.4602235,3.42180078 19.48,3.57 C19.5340993,3.92393477 19.554191,4.28223587 19.54,4.64 L19.54,9.42 C19.578852,9.92887392 19.5246327,10.4405682 19.38,10.93 C19.27,11.12 18.99,11.21 18.53,11.21 L18.53,3.11 C18.7718735,3.09406934 19.0142863,3.13162626 19.24,3.22 Z M19.24,13.34 C19.8163127,13.3574057 20.3928505,13.3138302 20.96,13.21 C21.3245396,13.1481159 21.6680909,12.9969533 21.96,12.77 C22.2288287,12.5438006 22.4209712,12.2398661 22.51,11.9 C22.643288,11.1679419 22.6969338,10.4236056 22.67,9.68 L22.67,5.34 C22.6662002,4.55669241 22.6060449,3.77467335 22.49,3 C22.43037,2.59841431 22.260779,2.22116094 22,1.91 C21.6636187,1.56093667 21.2326608,1.317654 20.76,1.21 C19.7709421,1.02848785 18.7647002,0.958050915 17.76,1 L15.32,1 L15.32,13.34 L19.24,13.34 Z">
</path>
<path d="M27.86,10.34 C27.8769902,10.7218086 27.8501483,11.1043064 27.78,11.48 C27.72,11.63 27.46,11.71 27.26,11.71 C27.0954951,11.7299271 26.9386363,11.6349863 26.88,11.48 C26.7930212,11.1542289 26.7592527,10.8165437 26.78,10.48 L26.78,7.18 C26.7626076,6.84408875 26.7929089,6.50740774 26.87,6.18 C26.9317534,6.03447231 27.0833938,5.94840616 27.24,5.97 C27.43,5.97 27.7,6.05 27.76,6.21 C27.8468064,6.53580251 27.8805721,6.87345964 27.86,7.21 L27.86,10.34 Z M23.7,1 L23.7,13.34 L26.58,13.34 L26.78,12.55 C27.0112432,12.8467609 27.3048209,13.0891332 27.64,13.26 C28.0022345,13.4198442 28.394069,13.5016184 28.79,13.5 C29.2588971,13.515288 29.7196211,13.3746089 30.1,13.1 C30.4399329,12.8800058 30.6913549,12.5471372 30.81,12.16 C30.9423503,11.6167622 31.0061799,11.0590937 31,10.5 L31,7 C31.0087531,6.51279482 30.9920637,6.02546488 30.95,5.54 C30.904474,5.28996521 30.801805,5.05382649 30.65,4.85 C30.4742549,4.59691259 30.2270668,4.40194735 29.94,4.29 C29.5869438,4.15031408 29.2096076,4.08232558 28.83,4.09 C28.4361722,4.08961884 28.0458787,4.16428368 27.68,4.31 C27.3513666,4.46911893 27.0587137,4.693713 26.82,4.97 L26.82,1 L23.7,1 Z">
</path>
<path d="M32.13,1 L35.32,1 C35.9925574,0.978531332 36.6650118,1.04577677 37.32,1.2 C37.717112,1.29759578 38.0801182,1.50157071 38.37,1.79 C38.6060895,2.05302496 38.7682605,2.37391646 38.84,2.72 C38.935586,3.27463823 38.9757837,3.8374068 38.96,4.4 L38.96,5.46 C38.9916226,6.03689533 38.9100917,6.61440551 38.72,7.16 C38.5402933,7.53432344 38.2260614,7.82713037 37.84,7.98 C37.3049997,8.18709035 36.7332458,8.28238268 36.16,8.26 L35.31,8.26 L35.31,13.16 L32.13,13.16 L32.13,1 Z M35.29,3.08 L35.29,6.18 L35.53,6.18 C35.7515781,6.20532753 35.9725786,6.12797738 36.13,5.97 C36.2717869,5.69610033 36.3308522,5.38687568 36.3,5.08 L36.3,4.08 C36.3390022,3.79579475 36.2713114,3.5072181 36.11,3.27 C35.8671804,3.11299554 35.5771259,3.04578777 35.29,3.08 Z">
</path>
<path d="M42,4.36 L41.89,5.52 C42.28,4.69 43.67,4.42 44.41,4.37 L43.6,7.3 C43.2290559,7.27725357 42.8582004,7.34593052 42.52,7.5 C42.3057075,7.61238438 42.1519927,7.81367763 42.1,8.05 C42.0178205,8.59259006 41.9843538,9.14144496 42,9.69 L42,13.16 L39.34,13.16 L39.34,4.36 L42,4.36 Z">
</path>
<path d="M51.63,9.71 C51.6472876,10.3265292 51.6003682,10.9431837 51.49,11.55 C51.376862,11.9620426 51.1639158,12.3398504 50.87,12.65 C50.5352227,13.001529 50.1148049,13.2599826 49.65,13.4 C49.0994264,13.5686585 48.5257464,13.6496486 47.95,13.64 C47.3333389,13.6524659 46.7178074,13.5818311 46.12,13.43 C45.6996896,13.322764 45.3140099,13.1092627 45,12.81 C44.7275808,12.5275876 44.5254637,12.1850161 44.41,11.81 C44.2627681,11.2181509 44.1921903,10.6098373 44.2,10 L44.2,7.64 C44.1691064,6.9584837 44.2780071,6.27785447 44.52,5.64 C44.7547114,5.12751365 45.1616363,4.71351186 45.67,4.47 C46.3337168,4.13941646 47.0688388,3.97796445 47.81,4 C48.4454888,3.98667568 49.0783958,4.08482705 49.68,4.29 C50.1352004,4.42444561 50.5506052,4.66819552 50.89,5 C51.1535526,5.26601188 51.3550281,5.58700663 51.48,5.94 C51.6001358,6.42708696 51.6506379,6.92874119 51.63,7.43 L51.63,9.71 Z M48.39,6.73 C48.412199,6.42705368 48.3817488,6.12255154 48.3,5.83 C48.2091142,5.71223121 48.0687606,5.64325757 47.92,5.64325757 C47.7712394,5.64325757 47.6308858,5.71223121 47.54,5.83 C47.447616,6.12046452 47.4136298,6.42634058 47.44,6.73 L47.44,10.93 C47.4168299,11.2204468 47.4508034,11.5126191 47.54,11.79 C47.609766,11.9270995 47.7570827,12.0067302 47.91,11.99 C48.0639216,12.0108082 48.2159732,11.9406305 48.3,11.81 C48.3790864,11.5546009 48.4096133,11.2866434 48.39,11.02 L48.39,6.73 Z">
</path>
</g>
</svg>
</div>
</a>
</div>
</div>
<div class="Root__Separator-sc-7p0yen-1 cECatH">
</div>
<div class="NavWatchlistButton-sc-1b65w5j-0 kaVyhF imdb-header__watchlist-button">
<a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button" href="/list/watchlist?ref_=nv_usr_wl_all_0" role="button" tabindex="0">
<svg class="ipc-icon ipc-icon--watchlist ipc-button__icon ipc-button__icon--pre" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M17 3c1.05 0 1.918.82 1.994 1.851L19 5v16l-7-3-7 3V5c0-1.05.82-1.918 1.851-1.994L7 3h10zm-4 4h-2v3H8v2h3v3h2v-3h3v-2h-3V7z" fill="currentColor">
</path>
</svg>
<div class="ipc-button__text">
Watchlist
</div>
</a>
</div>
<div class="_3x17Igk9XRXcaKrcG3_MXQ navbar__user UserMenu-sc-1poz515-0 eIWOUD">
<a aria-disabled="false" class="ipc-button ipc-button--single-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-baseAlt ipc-button--theme-baseAlt ipc-button--on-textPrimary ipc-text-button imdb-header__signin-text" href="/registration/signin?ref=nv_generic_lgin" role="button" tabindex="0">
<div class="ipc-button__text">
Sign In
</div>
</a>
</div>
</div>
</nav>
<svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
<lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
</defs>
</svg>
</div>
<script type="text/javascript">
if (!window.RadWidget) {
window.RadWidget = {
registerReactWidgetInstance: function(input) {
window.RadWidget[input.widgetName] = window.RadWidget[input.widgetName] || [];
window.RadWidget[input.widgetName].push({
id: input.instanceId,
props: JSON.stringify(input.model)
})
},
getReactWidgetInstances: function(widgetName) {
return window.RadWidget[widgetName] || []
}
};
}
</script>
<script type="text/javascript">
window['RadWidget'].registerReactWidgetInstance({
widgetName: "IMDbConsumerSiteNavFeatureV1",
instanceId: "beee0dd7-1f16-4fae-bdca-5a5379f37b83",
model: {"username":null,"isLoggedIn":false,"showIMDbTVLink":false,"weblabs":[]}
});
</script>
<script>
if (typeof uet == 'function') {
uet("ne");
}
</script>
<style>
.oscars-site-stripe {
background-color: #000;
overflow: hidden;
display: flex;
justify-content: center;
}
.oscars-site-stripe__img--sm {
height: 64px;
}
</style>
<div class="oscars-site-stripe">
</div>
<div id="wrapper">
<div class="redesign" id="root">
<div class="navbarSprite" id="nb20">
<div id="supertab">
<!-- no content received for slot: top_ad -->
<script>
if (window && window.mediaOrchestrator) {
window.mediaOrchestrator.publish('mediaPlaybackEvent', {
type: 'no-autoplay-video-ad-detected',
slotName: 'top_ad',
timestamp: Date.now()
});
}
</script>
</div>
<!-- no content received for slot: navstrip -->
<!-- no content received for slot: injected_navstrip -->
</div>
<div class="pagecontent" id="pagecontent">
<!-- no content received for slot: injected_billboard -->
<div id="content-2-wide">
<div id="main">
<div class="article listo">
<div class="overflow-menu">
<div class="circle">
<div class="vertical-ellipsis">
<svg fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9
2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z">
</path>
</svg>
</div>
</div>
<div class="pop-up-dialog">
<ul class="pop-up-menu-list-items">
<li>
<a class="pop-up-menu-list-item-link" href="/list/ls009997493/copy">
Copy from this list
</a>
</li>
<li>
<a class="pop-up-menu-list-item-link" href="/list/ls009997493/export">
Export
</a>
</li>
<li>
<a class="pop-up-menu-list-item-link" href="/listo/report?list=ls009997493">
Report this list
</a>
</li>
</ul>
</div>
</div>
<h1 class="header list-name">
IMDB Top 100 Hindi Movies
</h1>
<span class="list-overview text-small" id="list-overview-summary">
by
<a href="/user/ur22491218/">
dheeraj-ronaldo
</a>
<span class="ghost">
|
</span>
<span class="text-muted" id="list-overview-created">
created - 24 Jul 2012
</span>
<span class="ghost">
|
</span>
<span class="text-muted" id="list-overview-lastupdated">
updated - 21 Oct 2013
</span>
<span class="ghost">
|
</span>
<svg class="privacy-public item-privacy-lock" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path class="path" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z">
</path>
</svg>
<span class="privacy-overview text-muted">
Public
</span>
</span>
<div class="list-description">
<p>
These are Top 100 Bollywood movies sorted according to their IMDB Rating.
<br/>
<br/>
<b>
Criteria to be in the list
</b>
:
1.Language -
<b>
Hindi
</b>
.
2.Votes-
<b>
Minimum 1000 votes
</b>
.
<br/>
<br/>
<b>
Note
</b>
: I have not included movies that are dubbed to Hindi from another language.
<br/>
<br/>
Click Below For
<b>
<a href="http://www.imdb.com/list/vPL-O7dnyGA/">
IMDb 100 Worst Hindi Movies
</a>
</b>
<br/>
<br/>
<b>
P.S:- This is not my list, its sorted according to the IMDb rating of the movies which the users have voted, so please try to read the description completely before commenting.
</b>
<br/>
<br/>
And now I would like to thank you for reading the description. Cheers.
</p>
</div>
<div class="faceter nojs-hidden">
<div class="faceter-header">
<span class="expand">
<span class="global-sprite double-arrow down active">
</span>
<strong>
Refine
</strong>
</span>
<span class="facets-active">
<span class="empty text-muted">
See titles to watch instantly, titles you haven't rated, etc
</span>
</span>
</div>
<div class="faceter-content">
<div class="faceter-categories">
<ul>
<li class="faceter-category" data-for="watch_options">
<strong>
Instant Watch Options
</strong>
</li>
<li class="faceter-category" data-for="genres">
<strong>
Genres
</strong>
</li>
<li class="faceter-category" data-for="title_type">
<strong>
Movies or TV
</strong>
</li>
<li class="faceter-category" data-for="imdb_rating">
<strong>
IMDb Rating
</strong>
</li>
<li class="faceter-category" data-for="in_theaters">
<strong>
In Theaters
</strong>
</li>
<li class="faceter-category" data-for="release_date">
<strong>
Release Year
</strong>
</li>
<li class="faceter-category" data-for="keywords">
<strong>
Keywords
</strong>
</li>
</ul>
</div>
<div class="faceter-facets">
<div class="faceter-fieldset watch_options">
<fieldset data-join="and" name="watch_option">
<label class="unbold">
<input data-count="39" name="has_video_prime_instant_video" ref-marker="ttls_ref_inst_piv" type="checkbox"/>
<span class="faceter-facet-text">
Prime Video
</span>
<span class="text-muted text-small">
(39)
</span>
</label>
<br/>
</fieldset>
</div>
<div class="faceter-fieldset genres">
<fieldset data-join="and" name="genres">
<span class="col-2">
<label class="unbold">
<input data-count="90" name="Drama" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Drama
</span>
<span class="text-muted text-small">
(90)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="40" name="Comedy" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Comedy
</span>
<span class="text-muted text-small">
(40)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="33" name="Crime" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Crime
</span>
<span class="text-muted text-small">
(33)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="30" name="Romance" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Romance
</span>
<span class="text-muted text-small">
(30)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="28" name="Action" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Action
</span>
<span class="text-muted text-small">
(28)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="20" name="Thriller" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Thriller
</span>
<span class="text-muted text-small">
(20)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="16" name="Musical" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Musical
</span>
<span class="text-muted text-small">
(16)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="7" name="Family" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Family
</span>
<span class="text-muted text-small">
(7)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="7" name="Sport" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Sport
</span>
<span class="text-muted text-small">
(7)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="5" name="Mystery" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Mystery
</span>
<span class="text-muted text-small">
(5)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="4" name="History" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
History
</span>
<span class="text-muted text-small">
(4)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="3" name="Biography" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Biography
</span>
<span class="text-muted text-small">
(3)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="3" name="War" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
War
</span>
<span class="text-muted text-small">
(3)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="1" name="Adventure" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Adventure
</span>
<span class="text-muted text-small">
(1)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="1" name="Fantasy" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Fantasy
</span>
<span class="text-muted text-small">
(1)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="1" name="Music" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Music
</span>
<span class="text-muted text-small">
(1)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="1" name="Sci-Fi" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Sci-Fi
</span>
<span class="text-muted text-small">
(1)
</span>
</label>
</span>
<span class="col-2">
<label class="unbold">
<input data-count="1" name="Western" ref-marker="ttls_ref_gnr" type="checkbox"/>
<span class="faceter-facet-text">
Western
</span>
<span class="text-muted text-small">
(1)
</span>
</label>
</span>
</fieldset>
</div>
<div class="faceter-fieldset title_type">
<fieldset data-join="or" name="title_type">
<label class="unbold">
<input data-count="100" name="movie" ref-marker="ttls_ref_typ" type="checkbox"/>
<span class="faceter-facet-text">
Feature Film
</span>
<span class="text-muted text-small">
(100)
</span>
</label>
<br/>
</fieldset>
</div>
<div class="faceter-fieldset imdb_rating">
<fieldset data-join="between" name="user_rating">
<legend class="text-muted unbold" data-tag="IMDb Rating">
IMDb user rating (average)
</legend>
<span>
</span>
<select name="min" ref-marker="ttls_ref_rt_usr" value="0.0">
<option value="1">
1
</option>
<option value="1.1">
1.1
</option>
<option value="1.2">
1.2
</option>
<option value="1.3">
1.3
</option>
<option value="1.4">
1.4
</option>
<option value="1.5">
1.5
</option>
<option value="1.6">
1.6
</option>
<option value="1.7">
1.7
</option>
<option value="1.8">
1.8
</option>
<option value="1.9">
1.9
</option>
<option value="2.0">
2.0
</option>
<option value="2.1">
2.1
</option>
<option value="2.2">
2.2
</option>
<option value="2.3">
2.3
</option>
<option value="2.4">
2.4
</option>
<option value="2.5">
2.5
</option>
<option value="2.6">
2.6
</option>
<option value="2.7">
2.7
</option>
<option value="2.8">
2.8
</option>
<option value="2.9">
2.9
</option>
<option value="3.0">
3.0
</option>
<option value="3.1">
3.1
</option>
<option value="3.2">
3.2
</option>
<option value="3.3">
3.3
</option>
<option value="3.4">
3.4
</option>
<option value="3.5">
3.5
</option>
<option value="3.6">
3.6
</option>
<option value="3.7">
3.7
</option>
<option value="3.8">
3.8
</option>
<option value="3.9">
3.9
</option>
<option value="4.0">
4.0
</option>
<option value="4.1">
4.1
</option>
<option value="4.2">
4.2
</option>
<option value="4.3">
4.3
</option>
<option value="4.4">
4.4
</option>
<option value="4.5">
4.5
</option>
<option value="4.6">
4.6
</option>
<option value="4.7">
4.7
</option>
<option value="4.8">
4.8
</option>
<option value="4.9">
4.9
</option>
<option value="5.0">
5.0
</option>
<option value="5.1">
5.1
</option>
<option value="5.2">
5.2
</option>
<option value="5.3">
5.3
</option>
<option value="5.4">
5.4
</option>
<option value="5.5">
5.5
</option>
<option value="5.6">
5.6
</option>
<option value="5.7">
5.7
</option>
<option value="5.8">
5.8
</option>
<option value="5.9">
5.9
</option>
<option value="6.0">
6.0
</option>
<option value="6.1">
6.1
</option>
<option value="6.2">
6.2
</option>
<option value="6.3">
6.3
</option>
<option value="6.4">
6.4
</option>
<option value="6.5">
6.5
</option>
<option value="6.6">
6.6
</option>
<option value="6.7">
6.7
</option>
<option value="6.8">
6.8
</option>
<option value="6.9">
6.9
</option>
<option value="7.0">
7.0
</option>
<option value="7.1">
7.1
</option>
<option value="7.2">
7.2
</option>
<option value="7.3">
7.3
</option>
<option value="7.4">
7.4
</option>
<option value="7.5">
7.5
</option>
<option value="7.6">
7.6
</option>
<option value="7.7">
7.7
</option>
<option value="7.8">
7.8
</option>
<option value="7.9">
7.9
</option>
<option value="8.0">
8.0
</option>
<option value="8.1">
8.1
</option>
<option value="8.2">
8.2
</option>
<option value="8.3">
8.3
</option>
<option value="8.4">
8.4
</option>
<option value="8.5">
8.5
</option>
<option value="8.6">
8.6
</option>
<option value="8.7">
8.7
</option>
<option value="8.8">
8.8
</option>
<option value="8.9">
8.9
</option>
<option value="9.0">
9.0
</option>
<option value="9.1">
9.1
</option>
<option value="9.2">
9.2
</option>
<option value="9.3">
9.3
</option>
<option value="9.4">
9.4
</option>
<option value="9.5">
9.5
</option>
<option value="9.6">
9.6
</option>
<option value="9.7">
9.7
</option>
<option value="9.8">
9.8
</option>
<option value="9.9">
9.9
</option>
<option value="10">
10
</option>
</select>
<span>
to
</span>
<select name="max" ref-marker="ttls_ref_rt_usr" value="0.0">
<option value="10">
10
</option>
<option value="9.9">
9.9
</option>
<option value="9.8">
9.8
</option>
<option value="9.7">
9.7
</option>
<option value="9.6">
9.6
</option>
<option value="9.5">
9.5
</option>
<option value="9.4">
9.4
</option>
<option value="9.3">
9.3
</option>
<option value="9.2">
9.2
</option>
<option value="9.1">
9.1
</option>
<option value="9.0">
9.0
</option>
<option value="8.9">
8.9
</option>
<option value="8.8">
8.8
</option>
<option value="8.7">
8.7
</option>
<option value="8.6">
8.6
</option>
<option value="8.5">
8.5
</option>
<option value="8.4">
8.4
</option>
<option value="8.3">
8.3
</option>
<option value="8.2">
8.2
</option>
<option value="8.1">
8.1
</option>
<option value="8.0">
8.0
</option>
<option value="7.9">
7.9
</option>
<option value="7.8">
7.8
</option>
<option value="7.7">
7.7
</option>
<option value="7.6">
7.6
</option>
<option value="7.5">
7.5
</option>
<option value="7.4">
7.4
</option>
<option value="7.3">
7.3
</option>
<option value="7.2">
7.2
</option>
<option value="7.1">
7.1
</option>
<option value="7.0">
7.0
</option>
<option value="6.9">
6.9
</option>
<option value="6.8">
6.8
</option>
<option value="6.7">
6.7
</option>
<option value="6.6">
6.6
</option>
<option value="6.5">
6.5
</option>
<option value="6.4">
6.4
</option>
<option value="6.3">
6.3
</option>
<option value="6.2">
6.2
</option>
<option value="6.1">
6.1
</option>
<option value="6.0">
6.0
</option>
<option value="5.9">
5.9
</option>
<option value="5.8">
5.8
</option>
<option value="5.7">
5.7
</option>
<option value="5.6">
5.6
</option>
<option value="5.5">
5.5
</option>
<option value="5.4">
5.4
</option>
<option value="5.3">
5.3
</option>
<option value="5.2">
5.2
</option>
<option value="5.1">
5.1
</option>
<option value="5.0">
5.0
</option>
<option value="4.9">
4.9
</option>
<option value="4.8">
4.8
</option>
<option value="4.7">
4.7
</option>
<option value="4.6">
4.6
</option>
<option value="4.5">
4.5
</option>
<option value="4.4">
4.4
</option>
<option value="4.3">
4.3
</option>
<option value="4.2">
4.2
</option>
<option value="4.1">
4.1
</option>
<option value="4.0">
4.0
</option>
<option value="3.9">
3.9
</option>
<option value="3.8">
3.8
</option>
<option value="3.7">
3.7
</option>
<option value="3.6">
3.6
</option>
<option value="3.5">
3.5
</option>
<option value="3.4">
3.4
</option>
<option value="3.3">
3.3
</option>
<option value="3.2">
3.2
</option>
<option value="3.1">
3.1
</option>
<option value="3.0">
3.0
</option>
<option value="2.9">
2.9
</option>
<option value="2.8">
2.8
</option>
<option value="2.7">
2.7
</option>
<option value="2.6">
2.6
</option>
<option value="2.5">
2.5
</option>
<option value="2.4">
2.4
</option>
<option value="2.3">
2.3
</option>
<option value="2.2">
2.2
</option>
<option value="2.1">
2.1
</option>
<option value="2.0">
2.0
</option>
<option value="1.9">
1.9
</option>
<option value="1.8">
1.8
</option>
<option value="1.7">
1.7
</option>
<option value="1.6">
1.6
</option>
<option value="1.5">
1.5
</option>
<option value="1.4">
1.4
</option>
<option value="1.3">
1.3
</option>
<option value="1.2">
1.2
</option>
<option value="1.1">
1.1
</option>
<option value="1">
1
</option>
</select>
</fieldset>
<fieldset data-join="between" name="num_votes">
<legend class="text-muted unbold" data-tag="Votes">
Number of votes
</legend>
<span>
</span>
<input data-validation="^[0-9]\d*$" name="min" ref-marker="ttls_ref_rt_vt" size="10" type="text" value=""/>
<span>
to
</span>
<input data-validation="^[0-9]\d*$" name="max" ref-marker="ttls_ref_rt_vt" size="10" type="text" value=""/>
<a class="btn small secondary faceter-search-btn" data-group="num_votes" href="#" title="Search">
»
</a>
</fieldset>
</div>
<div class="faceter-fieldset in_theaters">
<fieldset data-join="and" name="now_playing">
<label class="unbold">
<input data-count="" name="in_theaters" ref-marker="ttls_ref_sh_fav" type="radio" value="favorite"/>
<span class="faceter-facet-text">
In Favorite Theaters
</span>
</label>
<br/>
<label class="unbold">
<input data-count="" name="in_theaters" ref-marker="ttls_ref_sh_you" type="radio" value="restrict"/>
<span class="faceter-facet-text">
In Theaters Near You
</span>
</label>
<br/>
<hr/>
</fieldset>
<a class="faceter-reset" data-fieldset="in_theaters" href="#">
Reset
</a>
</div>
<div class="faceter-fieldset release_date">
<fieldset data-join="between" name="release_date">
<legend class="text-muted unbold" data-tag="Released">
Release year or range
</legend>
<span>
</span>
<input data-validation="^[0-9]\d*$" name="min" ref-marker="ttls_ref_yr" size="10" type="text" value=""/>
<span>
to
</span>
<input data-validation="^[0-9]\d*$" name="max" ref-marker="ttls_ref_yr" size="10" type="text" value=""/>
<a class="btn small secondary faceter-search-btn" data-group="release_date" href="#" title="Search">
»
</a>
</fieldset>
</div>
<div class="faceter-fieldset keywords">
<fieldset data-join="and" name="keywords">
<label class="unbold">
<input data-count="29" name="friendship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Friendship
</span>
<span class="text-muted text-small">
(29)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="25" name="love" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Love
</span>
<span class="text-muted text-small">
(25)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="24" name="police" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Police
</span>
<span class="text-muted text-small">
(24)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="23" name="husband-wife-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Husband Wife Relationship
</span>
<span class="text-muted text-small">
(23)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="22" name="father-son-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Father Son Relationship
</span>
<span class="text-muted text-small">
(22)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="21" name="train" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Train
</span>
<span class="text-muted text-small">
(21)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="india" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
India
</span>
<span class="text-muted text-small">
(20)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="mumbai-india" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Mumbai India
</span>
<span class="text-muted text-small">
(20)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="murder" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Murder
</span>
<span class="text-muted text-small">
(20)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="20" name="title-spoken-by-character" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Title Spoken By Character
</span>
<span class="text-muted text-small">
(20)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="one-word-title" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
One Word Title
</span>
<span class="text-muted text-small">
(19)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="19" name="wedding" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Wedding
</span>
<span class="text-muted text-small">
(19)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="18" name="blood" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Blood
</span>
<span class="text-muted text-small">
(18)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="18" name="cult-film" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Cult Film
</span>
<span class="text-muted text-small">
(18)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="18" name="drunkenness" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Drunkenness
</span>
<span class="text-muted text-small">
(18)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="18" name="flashback" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Flashback
</span>
<span class="text-muted text-small">
(18)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="18" name="mother-son-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Mother Son Relationship
</span>
<span class="text-muted text-small">
(18)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="17" name="character-name-in-title" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Character Name In Title
</span>
<span class="text-muted text-small">
(17)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="17" name="muslim" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Muslim
</span>
<span class="text-muted text-small">
(17)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="17" name="police-officer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Police Officer
</span>
<span class="text-muted text-small">
(17)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="16" name="revenge" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Revenge
</span>
<span class="text-muted text-small">
(16)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="16" name="violence" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Violence
</span>
<span class="text-muted text-small">
(16)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="beating" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Beating
</span>
<span class="text-muted text-small">
(15)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="death" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Death
</span>
<span class="text-muted text-small">
(15)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="gangster" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Gangster
</span>
<span class="text-muted text-small">
(15)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="hindu" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Hindu
</span>
<span class="text-muted text-small">
(15)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="15" name="photograph" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Photograph
</span>
<span class="text-muted text-small">
(15)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="14" name="anger" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Anger
</span>
<span class="text-muted text-small">
(14)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="14" name="betrayal" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Betrayal
</span>
<span class="text-muted text-small">
(14)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="14" name="friend" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Friend
</span>
<span class="text-muted text-small">
(14)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="13" name="brother-brother-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Brother Brother Relationship
</span>
<span class="text-muted text-small">
(13)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="13" name="chase" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Chase
</span>
<span class="text-muted text-small">
(13)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="13" name="face-slap" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Face Slap
</span>
<span class="text-muted text-small">
(13)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="13" name="hospital" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Hospital
</span>
<span class="text-muted text-small">
(13)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="13" name="marriage" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Marriage
</span>
<span class="text-muted text-small">
(13)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="13" name="song" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Song
</span>
<span class="text-muted text-small">
(13)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="airport" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Airport
</span>
<span class="text-muted text-small">
(12)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="anti-hero" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Anti Hero
</span>
<span class="text-muted text-small">
(12)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="arrest" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Arrest
</span>
<span class="text-muted text-small">
(12)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="fight" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Fight
</span>
<span class="text-muted text-small">
(12)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="rain" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Rain
</span>
<span class="text-muted text-small">
(12)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="12" name="telephone-call" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Telephone Call
</span>
<span class="text-muted text-small">
(12)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="coming-of-age" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Coming Of Age
</span>
<span class="text-muted text-small">
(11)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="kidnapping" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Kidnapping
</span>
<span class="text-muted text-small">
(11)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="police-station" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Police Station
</span>
<span class="text-muted text-small">
(11)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="11" name="shot-to-death" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Shot To Death
</span>
<span class="text-muted text-small">
(11)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="based-on-true-story" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Based On True Story
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="boyfriend-girlfriend-relationship" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Boyfriend Girlfriend Relationship
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="dancer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Dancer
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="dancing" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Dancing
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="death-of-protagonist" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Death Of Protagonist
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="directorial-debut" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Directorial Debut
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="mistaken-identity" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Mistaken Identity
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="restaurant" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Restaurant
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="sikh" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Sikh
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="10" name="suicide" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Suicide
</span>
<span class="text-muted text-small">
(10)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="bus" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Bus
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="cigarette-smoking" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Cigarette Smoking
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="corrupt-cop" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Corrupt Cop
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="corruption" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Corruption
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="criminal" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Criminal
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="death-of-friend" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Death Of Friend
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="drinking" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Drinking
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="explosion" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Explosion
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="gun" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Gun
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="hotel" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Hotel
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="kiss" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Kiss
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="man-wears-eyeglasses" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Man Wears Eyeglasses
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="organized-crime" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Organized Crime
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="prison" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Prison
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="scooter" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Scooter
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="singer" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Singer
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="singing" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Singing
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="torture" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Torture
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="train-station" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Train Station
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="9" name="village" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Village
</span>
<span class="text-muted text-small">
(9)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="attempted-murder" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Attempted Murder
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="bare-chested-male" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Bare Chested Male
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="beach" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Beach
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="character-repeating-someone-else's-dialogue" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Character Repeating Someone Else's Dialogue
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="corpse" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Corpse
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="deception" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Deception
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="doctor" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Doctor
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="escape" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Escape
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="family-relationships" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Family Relationships
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="famous-line" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Famous Line
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="gang-war" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Gang War
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="jealousy" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Jealousy
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="love-triangle" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Love Triangle
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="pistol" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Pistol
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="shot-in-the-back" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Shot In The Back
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="slow-motion-scene" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Slow Motion Scene
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="surprise-ending" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Surprise Ending
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="told-in-flashback" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Told In Flashback
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="tragedy" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Tragedy
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="tragic-event" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Tragic Event
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="8" name="voice-over-narration" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Voice Over Narration
</span>
<span class="text-muted text-small">
(8)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="blood-splatter" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Blood Splatter
</span>
<span class="text-muted text-small">
(7)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="dream" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
Dream
</span>
<span class="text-muted text-small">
(7)
</span>
</label>
<br/>
<label class="unbold">
<input data-count="7" name="f-rated" ref-marker="ttls_ref_key" type="checkbox"/>
<span class="faceter-facet-text">
F Rated
</span>
<span class="text-muted text-small">
(7)
</span>
</label>
<br/>
</fieldset>
</div>
</div>
</div>
<div class="hidden faceter-working">
</div>
</div>
<div class="lister list detail sub-list">
<div class="header filmosearch">
<div class="nav">
<div class="lister-controls float-right lister-activated">
<div class="lister-control-group">
Sort by:
<br/>
<select class="lister-sort-by" name="sort">
<option selected="selected" value="list_order:ascending">
List Order
</option>
<option value="moviemeter:ascending">
Popularity
</option>
<option value="alpha:ascending">
Alphabetical
</option>
<option value="user_rating:descending">
IMDb Rating
</option>
<option value="num_votes:descending">
Number of Votes
</option>
<option value="release_date:descending">
Release Date
</option>
<option value="runtime:descending">
Runtime
</option>
<option value="date_added:descending">
Date Added
</option>
</select>
<span class="global-sprite lister-sort-reverse descending" data-sort="list_order:descending" title="Ascending order">
</span>
</div>
<div class="lister-control-group">
View:
<br/>
<span class="global-sprite lister-mode grid" data-mode="grid" ref-marker="ttls_vw_grd" title="Grid view">
</span>
<span class="global-sprite lister-mode detail" data-mode="detail" ref-marker="ttls_vm_dtl" title="Detail view">
</span>
<span class="global-sprite lister-mode simple" data-mode="simple" ref-marker="ttls_vw_smp" title="Compact view">
</span>
</div>
</div>
<div class="desc lister-total-num-results">
100 titles
</div>
<div class="clear">
</div>
</div>
</div>
<div class="clear">
</div>
<div class="lister-list">
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0405508">
<a href="/title/tt0405508/">
<img alt="Rang De Basanti" class="loadlate" data-tconst="tt0405508" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYThmZDA0YmQtMWJhNy00MDQwLTk0Y2YtMDhmZTE5ZjhlNjliXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
1.
</span>
<a href="/title/tt0405508/">
Rang De Basanti
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
167 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0405508" id="checkbox-tt0405508" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0405508">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0405508">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0405508"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of six young Indians who assist an English woman to film a documentary on the freedom fighters from their past, and the events that lead them to relive the long-forgotten saga of freedom.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1018493/">
Rakeysh Omprakash Mehra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm1675786/">
Soha Ali Khan
</a>
,
<a href="/name/nm1413459/">
Siddharth
</a>
,
<a href="/name/nm0430817/">
Sharman Joshi
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="116177" name="nv">
116,177
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="2,197,331" name="nv">
$2.20M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0405508" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=AK28V4FjqMc">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1187043">
<a href="/title/tt1187043/">
<img alt="3 Idiots" class="loadlate" data-tconst="tt1187043" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTkyOGVjMGEtNmQzZi00NzFlLTlhOWQtODYyMDc2ZGJmYzFhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
2.
</span>
<a href="/title/tt1187043/">
3 Idiots
</a>
<span class="lister-item-year text-muted unbold">
(2009)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
170 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.4
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1187043" id="checkbox-tt1187043" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1187043">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1187043">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1187043"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
67
</span>
Metascore
</div>
<p class="">
Two friends are searching for their long lost companion. They revisit their college days and recall the memories of their friend who inspired them to think differently, even as the rest of the world called them "idiots".
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0386246/">
Rajkumar Hirani
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0534856/">
Madhavan
</a>
,
<a href="/name/nm1587175/">
Mona Singh
</a>
,
<a href="/name/nm0430817/">
Sharman Joshi
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="365666" name="nv">
365,666
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="6,532,908" name="nv">
$6.53M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1187043" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
Highest grosser in Bollywood history
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=xvszmNXdM4w">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0986264">
<a href="/title/tt0986264/">
<img alt="Taare Zameen Par" class="loadlate" data-tconst="tt0986264" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDhjZWViN2MtNzgxOS00NmI4LThiZDQtZDI3MzM4MDE4NTc0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
3.
</span>
<a href="/title/tt0986264/">
Taare Zameen Par
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
165 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Family
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.4
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0986264" id="checkbox-tt0986264" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0986264">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0986264">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0986264"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An eight-year-old boy is thought to be a lazy trouble-maker, until the new art teacher has the patience and compassion to discover the real problem behind his struggles in school.
</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm1244760/">
Amole Gupte
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm2594301/">
Darsheel Safary
</a>
,
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm1538116/">
Tisca Chopra
</a>
,
<a href="/name/nm1479650/">
Vipin Sharma
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="179671" name="nv">
179,671
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,223,869" name="nv">
$1.22M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0986264" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=2VdZUjOurPk">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0292490">
<a href="/title/tt0292490/">
<img alt="Dil Chahta Hai" class="loadlate" data-tconst="tt0292490" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjRjMTYwMTYtMmRkNi00MmVkLWE0MjQtNmM3YjI0NWFhZDNmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
4.
</span>
<a href="/title/tt0292490/">
Dil Chahta Hai
</a>
<span class="lister-item-year text-muted unbold">
(2001)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
Unrated
</span>
<span class="ghost">
|
</span>
<span class="runtime">
183 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0292490" id="checkbox-tt0292490" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0292490">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0292490">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0292490"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Three inseparable childhood friends are just out of college. Nothing comes between them - until they each fall in love, and their wildly different approaches to relationships creates tension.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1027719/">
Farhan Akhtar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0451307/">
Saif Ali Khan
</a>
,
<a href="/name/nm0451379/">
Akshaye Khanna
</a>
,
<a href="/name/nm0006689/">
Preity Zinta
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="69413" name="nv">
69,413
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="300,000" name="nv">
$0.30M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0292490" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=m13b25V0B10">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0367110">
<a href="/title/tt0367110/">
<img alt="Swades: We, the People" class="loadlate" data-tconst="tt0367110" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODY2NGYxZTEtMzBiOS00Zjg2LWEyZjYtNjQ5Mjg1MzQ5N2FlXkEyXkFqcGdeQXVyNTE0MDc0NTM@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
5.
</span>
<a href="/title/tt0367110/">
Swades: We, the People
</a>
<span class="lister-item-year text-muted unbold">
(2004)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
210 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0367110" id="checkbox-tt0367110" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0367110">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0367110">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0367110"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A successful Indian scientist returns to an Indian village to take his nanny to America with him and in the process rediscovers his roots.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0332950/">
Ashutosh Gowariker
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451321/">
Shah Rukh Khan
</a>
,
<a href="/name/nm1539666/">
Gayatri Joshi
</a>
,
<a href="/name/nm1584145/">
Kishori Ballal
</a>
,
<a href="/name/nm1587122/">
Smit Sheth
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="86715" name="nv">
86,715
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,223,240" name="nv">
$1.22M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0367110" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=NC7GuohSdWA">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0169102">
<a href="/title/tt0169102/">
<img alt="Lagaan: Once Upon a Time in India" class="loadlate" data-tconst="tt0169102" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDYxNWUzZmYtOGQxMC00MTdkLTkxOTctYzkyOGIwNWQxZjhmXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
6.
</span>
<a href="/title/tt0169102/">
Lagaan: Once Upon a Time in India
</a>
<span class="lister-item-year text-muted unbold">
(2001)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
224 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Musical, Sport
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0169102" id="checkbox-tt0169102" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0169102">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0169102">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0169102"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
84
</span>
Metascore
</div>
<p class="">
The people of a small village in Victorian India stake their future on a game of cricket against their ruthless British rulers.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0332950/">
Ashutosh Gowariker
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0944834/">
Raghuvir Yadav
</a>
,
<a href="/name/nm0961737/">
Gracy Singh
</a>
,
<a href="/name/nm0791226/">
Rachel Shelley
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="109001" name="nv">
109,001
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="70,147" name="nv">
$0.07M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0169102" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
Nominated for Oscar in the Best Foreign Language Film category.
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=FNX1beRgwJ8">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1954470">
<a href="/title/tt1954470/">
<img alt="Gangs of Wasseypur" class="loadlate" data-tconst="tt1954470" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTc5NjY4MjUwNF5BMl5BanBnXkFtZTgwODM3NzM5MzE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
7.
</span>
<a href="/title/tt1954470/">
Gangs of Wasseypur
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
321 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1954470" id="checkbox-tt1954470" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1954470">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1954470">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1954470"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
89
</span>
Metascore
</div>
<p class="">
A clash between Sultan and Shahid Khan leads to the expulsion of Khan from Wasseypur, and ignites a deadly blood feud spanning three generations.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440604/">
Anurag Kashyap
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0048075/">
Manoj Bajpayee
</a>
,
<a href="/name/nm3190246/">
Richa Chadha
</a>
,
<a href="/name/nm1596350/">
Nawazuddin Siddiqui
</a>
,
<a href="/name/nm0223606/">
Tigmanshu Dhulia
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="89066" name="nv">
89,066
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1954470" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=j-AkWDkXcMY">
Gangs Of Wasseypur 1 Trailer
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=S3PZbL8JGYQ">
Gangs Of Wasseypur 2 Trailer
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2082197">
<a href="/title/tt2082197/">
<img alt="Barfi!" class="loadlate" data-tconst="tt2082197" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTQzMTEyODY2Ml5BMl5BanBnXkFtZTgwMjA0MDUyMjE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
8.
</span>
<a href="/title/tt2082197/">
Barfi!
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
151 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2082197" id="checkbox-tt2082197" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2082197">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2082197">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2082197"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Three young people learn that love can neither be defined nor contained by society's definition of normal and abnormal.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1397301/">
Anurag Basu
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1633541/">
Ranbir Kapoor
</a>
,
<a href="/name/nm1231899/">
Priyanka Chopra Jonas
</a>
,
<a href="/name/nm2299825/">
Ileana D'Cruz
</a>
,
<a href="/name/nm0795661/">
Saurabh Shukla
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="78516" name="nv">
78,516
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="2,804,874" name="nv">
$2.80M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2082197" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=yZxrao3zou4">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0066763">
<a href="/title/tt0066763/">
<img alt="Anand" class="loadlate" data-tconst="tt0066763" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTMzNGFlYmUtMTA0Ny00MzE1LTk1NjAtNjIxYzczZmQxNzk2XkEyXkFqcGdeQXVyNzI1NzMxNzM@._V1_UY209_CR7,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
9.
</span>
<a href="/title/tt0066763/">
Anand
</a>
<span class="lister-item-year text-muted unbold">
(1971)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
122 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Musical
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0066763" id="checkbox-tt0066763" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0066763">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0066763">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0066763"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of a terminally ill man who wishes to live life to the fullest before the inevitable occurs, as told by his best friend.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0611531/">
Hrishikesh Mukherjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004435/">
Rajesh Khanna
</a>
,
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0764407/">
Sumita Sanyal
</a>
,
<a href="/name/nm0219946/">
Ramesh Deo
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="32685" name="nv">
32,685
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0066763" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=9RShJwyaWKA">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0374887">
<a href="/title/tt0374887/">
<img alt="Munna Bhai M.B.B.S." class="loadlate" data-tconst="tt0374887" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzQ4MTBlYTQtMzJkYS00OGNjLTk1MWYtNzQ0OTQ0OWEyOWU1XkEyXkFqcGdeQXVyNDgyODgxNjE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
10.
</span>
<a href="/title/tt0374887/">
Munna Bhai M.B.B.S.
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
156 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0374887" id="checkbox-tt0374887" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0374887">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0374887">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0374887"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A gangster sets out to fulfill his father's dream of becoming a doctor.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0386246/">
Rajkumar Hirani
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004569/">
Sanjay Dutt
</a>
,
<a href="/name/nm0451174/">
Arshad Warsi
</a>
,
<a href="/name/nm0961737/">
Gracy Singh
</a>
,
<a href="/name/nm0004570/">
Sunil Dutt
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="77505" name="nv">
77,505
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0374887" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=8uX1qIE6Qks">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1280558">
<a href="/title/tt1280558/">
<img alt="A Wednesday" class="loadlate" data-tconst="tt1280558" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTcwMzdiMWItMjZlOS00MzAzLTg5OTItNTA4OGYyMjBhMmRiXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
11.
</span>
<a href="/title/tt1280558/">
A Wednesday
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
104 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1280558" id="checkbox-tt1280558" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1280558">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1280558">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1280558"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A retiring police officer reminisces about the most astounding day of his career. About a case that was never filed but continues to haunt him in his memories - the case of a man and a Wednesday.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm3109770/">
Neeraj Pandey
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451600/">
Anupam Kher
</a>
,
<a href="/name/nm0787462/">
Naseeruddin Shah
</a>
,
<a href="/name/nm0792116/">
Jimmy Sheirgill
</a>
,
<a href="/name/nm2085856/">
Aamir Bashir
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="76140" name="nv">
76,140
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1280558" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=hI3E1jneWvg">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0109117">
<a href="/title/tt0109117/">
<img alt="Andaz Apna Apna" class="loadlate" data-tconst="tt0109117" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTIwYzRjMGYtZWQ0Ni00NDZhLThhZDYtOGViZGJiZTkwMzk2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
12.
</span>
<a href="/title/tt0109117/">
Andaz Apna Apna
</a>
<span class="lister-item-year text-muted unbold">
(1994)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
160 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Comedy, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0109117" id="checkbox-tt0109117" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0109117">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0109117">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0109117"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Two slackers competing for the affections of an heiress inadvertently become her protectors from an evil criminal.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0764316/">
Rajkumar Santoshi
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0006795/">
Salman Khan
</a>
,
<a href="/name/nm0849199/">
Raveena Tandon
</a>
,
<a href="/name/nm0006433/">
Karisma Kapoor
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="51565" name="nv">
51,565
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0109117" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=sW_HComeQpc">
Click Here To Watch Trailer on Youtube
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/movie?v=7M_jHUawccI&feature=mv_sr">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0073707">
<a href="/title/tt0073707/">
<img alt="Sholay" class="loadlate" data-tconst="tt0073707" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOGZiM2IwODktNTdiMC00MGU1LWEyZTYtOTk4NTkwYmJkNmI1L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
13.
</span>
<a href="/title/tt0073707/">
Sholay
</a>
<span class="lister-item-year text-muted unbold">
(1975)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
204 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Adventure, Comedy
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0073707" id="checkbox-tt0073707" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0073707">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0073707">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0073707"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
After his family is murdered by a notorious and ruthless bandit, a former police officer enlists the services of two outlaws to capture the bandit.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0802693/">
Ramesh Sippy
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0474876/">
Sanjeev Kumar
</a>
,
<a href="/name/nm0004429/">
Dharmendra
</a>
,
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0451166/">
Amjad Khan
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="53435" name="nv">
53,435
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0073707" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=JRQfxrJt8Xw">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2356180">
<a href="/title/tt2356180/">
<img alt="Bhaag Milkha Bhaag" class="loadlate" data-tconst="tt2356180" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTY1Nzg4MjcwN15BMl5BanBnXkFtZTcwOTc1NTk1OQ@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
14.
</span>
<a href="/title/tt2356180/">
Bhaag Milkha Bhaag
</a>
<span class="lister-item-year text-muted unbold">
(2013)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
186 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Biography, Drama, Sport
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2356180" id="checkbox-tt2356180" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2356180">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2356180">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2356180"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The truth behind the ascension of
<a href="/name/nm2245260">
Milkha Singh
</a>
who was scarred because of the India-Pakistan partition.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1018493/">
Rakeysh Omprakash Mehra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1027719/">
Farhan Akhtar
</a>
,
<a href="/name/nm2128238/">
Sonam Kapoor
</a>
,
<a href="/name/nm0539497/">
Pawan Malhotra
</a>
,
<a href="/name/nm0539562/">
Art Malik
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="64446" name="nv">
64,446
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,626,289" name="nv">
$1.63M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2356180" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0242519">
<a href="/title/tt0242519/">
<img alt="Hera Pheri" class="loadlate" data-tconst="tt0242519" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2RlZWQ4ZTItNjUzYi00MDJhLTk3MmQtZWUxMzhhMTMxZmE4XkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
15.
</span>
<a href="/title/tt0242519/">
Hera Pheri
</a>
<span class="lister-item-year text-muted unbold">
(2000)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
156 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Comedy, Crime
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0242519" id="checkbox-tt0242519" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0242519">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0242519">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0242519"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Three unemployed men look for answers to all their money problems - but when their opportunity arrives, will they know what to do with it?
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0698184/">
Priyadarshan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0474774/">
Akshay Kumar
</a>
,
<a href="/name/nm0792911/">
Sunil Shetty
</a>
,
<a href="/name/nm0712546/">
Paresh Rawal
</a>
,
<a href="/name/nm0007102/">
Tabu
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="61623" name="nv">
61,623
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0242519" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=mEywT_ImQNU">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1639426">
<a href="/title/tt1639426/">
<img alt="Udaan" class="loadlate" data-tconst="tt1639426" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzgxMzExMzUwNV5BMl5BanBnXkFtZTcwMDc2MjUwNA@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
16.
</span>
<a href="/title/tt1639426/">
Udaan
</a>
<span class="lister-item-year text-muted unbold">
(2010)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
134 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1639426" id="checkbox-tt1639426" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1639426">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1639426">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1639426"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Expelled from his school, a 16-year old boy returns home to his abusive and oppressive father.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0003939/">
Vikramaditya Motwane
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm3888054/">
Rajat Barmecha
</a>
,
<a href="/name/nm0747172/">
Ronit Roy
</a>
,
<a href="/name/nm3190972/">
Manjot Singh
</a>
,
<a href="/name/nm0438632/">
Ram Kapoor
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="43798" name="nv">
43,798
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="7,461" name="nv">
$0.01M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1639426" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=s2L_lVD7Xag">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1821480">
<a href="/title/tt1821480/">
<img alt="Kahaani" class="loadlate" data-tconst="tt1821480" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTQ1NDI0NzkyOF5BMl5BanBnXkFtZTcwNzAyNzE2Nw@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
17.
</span>
<a href="/title/tt1821480/">
Kahaani
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
122 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Mystery, Thriller
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1821480" id="checkbox-tt1821480" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1821480">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1821480">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1821480"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A pregnant woman's search for her missing husband takes her from London to Kolkata, but everyone she questions denies having ever met him.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1223910/">
Sujoy Ghosh
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1799038/">
Vidya Balan
</a>
,
<a href="/name/nm1913625/">
Parambrata Chattopadhyay
</a>
,
<a href="/name/nm1778890/">
Indraneil Sengupta
</a>
,
<a href="/name/nm1596350/">
Nawazuddin Siddiqui
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="60129" name="nv">
60,129
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,035,953" name="nv">
$1.04M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1821480" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=j1wEeuAosNM">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0375611">
<a href="/title/tt0375611/">
<img alt="Black" class="loadlate" data-tconst="tt0375611" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTI5MmE5M2UtZjIzYS00M2JjLWIwNDItYTY2ZWNiODBmYTBiXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
18.
</span>
<a href="/title/tt0375611/">
Black
</a>
<span class="lister-item-year text-muted unbold">
(2005)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
122 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0375611" id="checkbox-tt0375611" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0375611">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0375611">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0375611"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The cathartic tale of a young woman who can't see, hear or talk and the teacher who brings a ray of light into her dark world.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080220/">
Sanjay Leela Bhansali
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0611552/">
Rani Mukerji
</a>
,
<a href="/name/nm1617909/">
Shernaz Patel
</a>
,
<a href="/name/nm1754159/">
Ayesha Kapoor
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="34116" name="nv">
34,116
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="733,094" name="nv">
$0.73M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0375611" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=Smd_xZHCCzI">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0871510">
<a href="/title/tt0871510/">
<img alt="Chak De! India" class="loadlate" data-tconst="tt0871510" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTUzODMyNzk4NV5BMl5BanBnXkFtZTgwNTk1NTYyNTM@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
19.
</span>
<a href="/title/tt0871510/">
Chak De! India
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
153 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Family, Sport
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0871510" id="checkbox-tt0871510" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0871510">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0871510">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0871510"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
68
</span>
Metascore
</div>
<p class="">
Kabir Khan, the coach of the Indian Women's National Hockey Team, dreams of making his all-girls team emerge victorious against all odds.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0024912/">
Shimit Amin
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451321/">
Shah Rukh Khan
</a>
,
<a href="/name/nm1540244/">
Vidya Malvade
</a>
,
<a href="/name/nm2469366/">
Sagarika Ghatge
</a>
,
<a href="/name/nm1427076/">
Shilpa Shukla
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="77201" name="nv">
77,201
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,113,541" name="nv">
$1.11M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0871510" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=_NWwrarwqPE">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0466460">
<a href="/title/tt0466460/">
<img alt="Khosla Ka Ghosla!" class="loadlate" data-tconst="tt0466460" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTg2YWFkOGMtYWExMy00YmFiLTk2YjctNTAzZDk5MjdhMzdlXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
20.
</span>
<a href="/title/tt0466460/">
Khosla Ka Ghosla!
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
135 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.3
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0466460" id="checkbox-tt0466460" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0466460">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0466460">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0466460"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A Delhi based retired middle class man tries half-heartedly to get his land back from a swindling property dealer with the help of his sons and their friends.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1962313/">
Dibakar Banerjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451600/">
Anupam Kher
</a>
,
<a href="/name/nm1224082/">
Boman Irani
</a>
,
<a href="/name/nm0196375/">
Parvin Dabas
</a>
,
<a href="/name/nm1214809/">
Tara Sharma
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="23075" name="nv">
23,075
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="26,472" name="nv">
$0.03M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0466460" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=7sLGHvQQc4g">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0104561">
<a href="/title/tt0104561/">
<img alt="Jo Jeeta Wohi Sikandar" class="loadlate" data-tconst="tt0104561" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTU1ZjQwNDAtZDAwMC00OTcyLTg4MDUtOTUwYTU4N2M4YTgxXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
21.
</span>
<a href="/title/tt0104561/">
Jo Jeeta Wohi Sikandar
</a>
<span class="lister-item-year text-muted unbold">
(1992)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
174 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0104561" id="checkbox-tt0104561" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0104561">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0104561">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0104561"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A rich brat and a poor chap try to woo a girl, with their rivalry culminating in the most prestigious college event - the marathon cycle race.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0451257/">
Mansoor Khan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0422586/">
Ayesha Jhulka
</a>
,
<a href="/name/nm0863120/">
Deepak Tijori
</a>
,
<a href="/name/nm0066070/">
Pooja Bedi
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="22474" name="nv">
22,474
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0104561" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1562872">
<a href="/title/tt1562872/">
<img alt="Zindagi Na Milegi Dobara" class="loadlate" data-tconst="tt1562872" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZGFmMjM5OWMtZTRiNC00ODhlLThlYTItYTcyZDMyYmMyYjFjXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
22.
</span>
<a href="/title/tt1562872/">
Zindagi Na Milegi Dobara
</a>
<span class="lister-item-year text-muted unbold">
(2011)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
155 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1562872" id="checkbox-tt1562872" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1562872">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1562872">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1562872"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Three friends decide to turn their fantasy vacation into reality after one of their friends gets engaged.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0015295/">
Zoya Akhtar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004335/">
Hrithik Roshan
</a>
,
<a href="/name/nm1027719/">
Farhan Akhtar
</a>
,
<a href="/name/nm1867717/">
Abhay Deol
</a>
,
<a href="/name/nm1229940/">
Katrina Kaif
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="72340" name="nv">
72,340
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="3,108,485" name="nv">
$3.11M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1562872" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=61Vc46RbVOs">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1620933">
<a href="/title/tt1620933/">
<img alt="Paan Singh Tomar" class="loadlate" data-tconst="tt1620933" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTgwODM5OTMzN15BMl5BanBnXkFtZTcwMTA3NzI1Nw@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
23.
</span>
<a href="/title/tt1620933/">
Paan Singh Tomar
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
135 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Biography, Crime
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1620933" id="checkbox-tt1620933" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1620933">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1620933">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1620933"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of Paan Singh Tomar, an Indian athlete and seven-time national steeplechase champion who becomes one of the most feared dacoits in Chambal Valley after his retirement.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0223606/">
Tigmanshu Dhulia
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451234/">
Irrfan Khan
</a>
,
<a href="/name/nm2977124/">
Mahie Gill
</a>
,
<a href="/name/nm10564417/">
Rajesh Abhay
</a>
,
<a href="/name/nm8450324/">
Hemendra Dandotiya
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="34789" name="nv">
34,789
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="39,567" name="nv">
$0.04M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1620933" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=enwaoPOO0Ik">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0112870">
<a href="/title/tt0112870/">
<img alt="Dilwale Dulhania Le Jayenge" class="loadlate" data-tconst="tt0112870" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDQ2ZmE2NTMtZDE3NC00YzFjLWJhNmEtMDEzMTI5ZjU2ZGM0XkEyXkFqcGdeQXVyNTkzNDQ4ODc@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
24.
</span>
<a href="/title/tt0112870/">
Dilwale Dulhania Le Jayenge
</a>
<span class="lister-item-year text-muted unbold">
(1995)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
189 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0112870" id="checkbox-tt0112870" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0112870">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0112870">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0112870"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When Raj meets Simran in Europe, it isn't love at first sight but when Simran moves to India for an arranged marriage, love makes its presence felt.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0159147/">
Aditya Chopra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451321/">
Shah Rukh Khan
</a>
,
<a href="/name/nm0004418/">
Kajol
</a>
,
<a href="/name/nm0700869/">
Amrish Puri
</a>
,
<a href="/name/nm0416077/">
Farida Jalal
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="66166" name="nv">
66,166
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0112870" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=1U9SpwJ9TCs">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0488414">
<a href="/title/tt0488414/">
<img alt="Omkara" class="loadlate" data-tconst="tt0488414" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2NmNjlhYzQtMWU5MS00YTVmLWIyOWEtOGFmY2ZjMjY2ZGRkXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
25.
</span>
<a href="/title/tt0488414/">
Omkara
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
155 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0488414" id="checkbox-tt0488414" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0488414">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0488414">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0488414"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A politically-minded enforcer's misguided trust in his lieutenant leads him to suspect his wife of infidelity in this adaptation of Shakespeare's 'Othello'.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080235/">
Vishal Bhardwaj
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0222426/">
Ajay Devgn
</a>
,
<a href="/name/nm0004626/">
Kareena Kapoor
</a>
,
<a href="/name/nm0451307/">
Saif Ali Khan
</a>
,
<a href="/name/nm1234298/">
Konkona Sen Sharma
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="19948" name="nv">
19,948
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="789,694" name="nv">
$0.79M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0488414" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=Hp697cTAIMU">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0456144">
<a href="/title/tt0456144/">
<img alt="Lage Raho Munna Bhai" class="loadlate" data-tconst="tt0456144" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BN2ZmMDMwODgtMzA5MS00MGU0LWEyYTgtYzQ5MmQzMzU2NTVkXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
26.
</span>
<a href="/title/tt0456144/">
Lage Raho Munna Bhai
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
144 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0456144" id="checkbox-tt0456144" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0456144">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0456144">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0456144"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Munna Bhai embarks on a journey with Mahatma Gandhi in order to fight against a corrupt property dealer.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0386246/">
Rajkumar Hirani
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004569/">
Sanjay Dutt
</a>
,
<a href="/name/nm0451174/">
Arshad Warsi
</a>
,
<a href="/name/nm1799038/">
Vidya Balan
</a>
,
<a href="/name/nm1224082/">
Boman Irani
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="45066" name="nv">
45,066
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="2,217,561" name="nv">
$2.22M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0456144" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=OE6f1oHgeDg">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0453729">
<a href="/title/tt0453729/">
<img alt="Iqbal" class="loadlate" data-tconst="tt0453729" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjA3NzUzMjU5MF5BMl5BanBnXkFtZTgwNzMxMDAxMzE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
27.
</span>
<a href="/title/tt0453729/">
Iqbal
</a>
<span class="lister-item-year text-muted unbold">
(2005)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
132 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Sport
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0453729" id="checkbox-tt0453729" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0453729">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0453729">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0453729"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Iqbal, the deaf and mute son of a farmer, has a passion for the game of cricket and seeks the tutelage of a washed-up, alcoholic ex-player.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0474398/">
Nagesh Kukunoor
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1662277/">
Shreyas Talpade
</a>
,
<a href="/name/nm0787462/">
Naseeruddin Shah
</a>
,
<a href="/name/nm1284108/">
Shweta Basu Prasad
</a>
,
<a href="/name/nm1244971/">
Yatin Karyekar
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="16428" name="nv">
16,428
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0453729" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=_RBGJ1kFXTI">
Click Here To Watch Trailer on Youtube
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=LBZec7FEn4c&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2350496">
<a href="/title/tt2350496/">
<img alt="The Lunchbox" class="loadlate" data-tconst="tt2350496" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTUwMzc1NjIzMV5BMl5BanBnXkFtZTgwODUyMTIxMTE@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
28.
</span>
<a href="/title/tt2350496/">
The Lunchbox
</a>
<span class="lister-item-year text-muted unbold">
(2013)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
104 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2350496" id="checkbox-tt2350496" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2350496">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2350496">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2350496"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
76
</span>
Metascore
</div>
<p class="">
A mistaken delivery in Mumbai's famously efficient lunchbox delivery system connects a young housewife to an older man in the dusk of his life as they build a fantasy world together through notes in the lunchbox.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm3592235/">
Ritesh Batra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451234/">
Irrfan Khan
</a>
,
<a href="/name/nm1909661/">
Nimrat Kaur
</a>
,
<a href="/name/nm1596350/">
Nawazuddin Siddiqui
</a>
,
<a href="/name/nm0239267/">
Lillete Dubey
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="53072" name="nv">
53,072
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="4,231,500" name="nv">
$4.23M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2350496" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0400234">
<a href="/title/tt0400234/">
<img alt="Black Friday" class="loadlate" data-tconst="tt0400234" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWRjMDlmNGYtOGFhYy00ZWU4LTk3MzEtOTI4ZTgxN2Y5NGNkXkEyXkFqcGdeQXVyNzU3Nzk4MDQ@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
29.
</span>
<a href="/title/tt0400234/">
Black Friday
</a>
<span class="lister-item-year text-muted unbold">
(2004)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
(Banned)
</span>
<span class="ghost">
|
</span>
<span class="runtime">
143 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.5
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0400234" id="checkbox-tt0400234" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0400234">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0400234">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0400234"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
76
</span>
Metascore
</div>
<p class="">
A film about the investigations following the 1993 serial Bombay bomb blasts, told through the different stories of the people involved --police, conspirators, victims, middlemen.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440604/">
Anurag Kashyap
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1946407/">
Kay Kay Menon
</a>
,
<a href="/name/nm0539497/">
Pawan Malhotra
</a>
,
<a href="/name/nm0820282/">
Aditya Srivastav
</a>
,
<a href="/name/nm0080349/">
Dibyendu Bhattacharya
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="19905" name="nv">
19,905
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="34,000" name="nv">
$0.03M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0400234" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0296574">
<a href="/title/tt0296574/">
<img alt="Company" class="loadlate" data-tconst="tt0296574" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTQwMjFmMDItYzdjNC00NzFkLTg2MzctYzQ3ZmI0MWVlMDMwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
30.
</span>
<a href="/title/tt0296574/">
Company
</a>
<span class="lister-item-year text-muted unbold">
(2002)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
142 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0296574" id="checkbox-tt0296574" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0296574">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0296574">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0296574"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A small-time gangster named Chandu teams up with Malik, a low-level enforcer for a criminal syndicate. Together they eliminate all their enemies, becoming the most feared gangsters in Mumbai.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0890060/">
Ram Gopal Varma
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0222426/">
Ajay Devgn
</a>
,
<a href="/name/nm0482320/">
Mohanlal
</a>
,
<a href="/name/nm0463539/">
Manisha Koirala
</a>
,
<a href="/name/nm0084443/">
Seema Biswas
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="15025" name="nv">
15,025
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0296574" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=iuP6zL9OA3g">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0079221">
<a href="/title/tt0079221/">
<img alt="Golmaal" class="loadlate" data-tconst="tt0079221" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjA4OTczODgxNF5BMl5BanBnXkFtZTgwMDAzMTU2NDE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
31.
</span>
<a href="/title/tt0079221/">
Golmaal
</a>
<span class="lister-item-year text-muted unbold">
(1979)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
144 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.5
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0079221" id="checkbox-tt0079221" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0079221">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0079221">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0079221"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A man's simple lie to secure his job escalates into more complex lies when his orthodox boss gets suspicious.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0611531/">
Hrishikesh Mukherjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0657505/">
Amol Palekar
</a>
,
<a href="/name/nm0331727/">
Bindiya Goswami
</a>
,
<a href="/name/nm0894340/">
Deven Verma
</a>
,
<a href="/name/nm0451863/">
Shubha Khote
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="18666" name="nv">
18,666
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0079221" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=U0D99D6bNLA&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1327035">
<a href="/title/tt1327035/">
<img alt="Dev.D" class="loadlate" data-tconst="tt1327035" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjU1NjczNzYtYmFjOC00NzkxLTg4YTUtNGYzMTk3NTU0ZDE3XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
32.
</span>
<a href="/title/tt1327035/">
Dev.D
</a>
<span class="lister-item-year text-muted unbold">
(2009)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
144 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1327035" id="checkbox-tt1327035" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1327035">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1327035">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1327035"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
After breaking up with his childhood sweetheart, a young man finds solace in drugs. Meanwhile, a teenage girl is caught in the world of prostitution. Will they be destroyed, or will they find redemption?
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440604/">
Anurag Kashyap
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1867717/">
Abhay Deol
</a>
,
<a href="/name/nm2977124/">
Mahie Gill
</a>
,
<a href="/name/nm3202701/">
Kalki Koechlin
</a>
,
<a href="/name/nm0080349/">
Dibyendu Bhattacharya
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="29722" name="nv">
29,722
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="10,950" name="nv">
$0.01M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1327035" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=ATZB8mwU3M0">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0085743">
<a href="/title/tt0085743/">
<img alt="Jaane Bhi Do Yaaro" class="loadlate" data-tconst="tt0085743" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDE0Y2NhYjEtNWM3MS00MzFiLTlkODctYmViY2Q4OTczYWI2XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
33.
</span>
<a href="/title/tt0085743/">
Jaane Bhi Do Yaaro
</a>
<span class="lister-item-year text-muted unbold">
(1983)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
132 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.4
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0085743" id="checkbox-tt0085743" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0085743">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0085743">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0085743"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Two friends, attempting to start-up their own photo studio, come across shady dealings, corruption and murder, and must fight to bring the guilty to light.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0787453/">
Kundan Shah
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0787462/">
Naseeruddin Shah
</a>
,
<a href="/name/nm0060629/">
Ravi Baswani
</a>
,
<a href="/name/nm0080268/">
Bhakti Barve
</a>
,
<a href="/name/nm0787474/">
Satish Shah
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="13685" name="nv">
13,685
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0085743" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=csslHKrvzlk">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2283748">
<a href="/title/tt2283748/">
<img alt="OMG: Oh My God!" class="loadlate" data-tconst="tt2283748" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMGNhYjUwNmYtNDQxNi00NDdmLTljMDAtZWM1NDQyZTk3ZDYwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR1,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
34.
</span>
<a href="/title/tt2283748/">
OMG: Oh My God!
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
125 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Fantasy
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2283748" id="checkbox-tt2283748" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2283748">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2283748">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2283748"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A shopkeeper takes God to court when his shop is destroyed by an earthquake.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1084488/">
Umesh Shukla
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0712546/">
Paresh Rawal
</a>
,
<a href="/name/nm0474774/">
Akshay Kumar
</a>
,
<a href="/name/nm0149822/">
Mithun Chakraborty
</a>
,
<a href="/name/nm0542498/">
Mahesh Manjrekar
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="54762" name="nv">
54,762
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="923,221" name="nv">
$0.92M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2283748" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=eSfJ9NTE0OE">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0054098">
<a href="/title/tt0054098/">
<img alt="Mughal-E-Azam" class="loadlate" data-tconst="tt0054098" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMmM2YWQ3MzctOTk1NS00NThhLWExY2MtYjQzZGRmZTFiYWY3XkEyXkFqcGdeQXVyMjUxMTY3ODM@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
35.
</span>
<a href="/title/tt0054098/">
Mughal-E-Azam
</a>
<span class="lister-item-year text-muted unbold">
(1960)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
PG
</span>
<span class="ghost">
|
</span>
<span class="runtime">
197 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance, War
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0054098" id="checkbox-tt0054098" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0054098">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0054098">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0054098"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A 16th century prince falls in love with a court dancer and battles with his emperor father.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0039339/">
K. Asif
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004432/">
Prithviraj Kapoor
</a>
,
<a href="/name/nm0534870/">
Madhubala
</a>
,
<a href="/name/nm0474801/">
Dilip Kumar
</a>
,
<a href="/name/nm0451862/">
Durga Khote
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="7798" name="nv">
7,798
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="161,434" name="nv">
$0.16M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0054098" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=rXz_vWzMh_U">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1261047">
<a href="/title/tt1261047/">
<img alt="Gulaal" class="loadlate" data-tconst="tt1261047" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYTMxYjEwYjctMjg4Ni00N2UyLThkNDEtNTY4ODExNmIzYjE5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
36.
</span>
<a href="/title/tt1261047/">
Gulaal
</a>
<span class="lister-item-year text-muted unbold">
(2009)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
140 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1261047" id="checkbox-tt1261047" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1261047">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1261047">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1261047"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A law student witnesses deception, homicide, and crime after being elected as General Secretary of his college.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0440604/">
Anurag Kashyap
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1946407/">
Kay Kay Menon
</a>
,
<a href="/name/nm1758779/">
Raj Singh Chaudhary
</a>
,
<a href="/name/nm9851055/">
Raja Chaudhary
</a>
,
<a href="/name/nm1670659/">
Jesse Randhawa
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="14483" name="nv">
14,483
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1261047" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=IS7KLVs1Ib4">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0824316">
<a href="/title/tt0824316/">
<img alt="Dor" class="loadlate" data-tconst="tt0824316" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYTk3NTVhNjktYTg0OC00ODk1LWE4MjUtMDhkNTY3MTMyMTc0XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
37.
</span>
<a href="/title/tt0824316/">
Dor
</a>
<span class="lister-item-year text-muted unbold">
(2006)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
147 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0824316" id="checkbox-tt0824316" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0824316">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0824316">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0824316"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Two woman --different backgrounds, miles apart, and strangers to each other-- are linked by tragedy. Their new-found friendship is tested as one holds the fate of the other's husband in her hands.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0474398/">
Nagesh Kukunoor
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1779702/">
Ayesha Takia
</a>
,
<a href="/name/nm1662277/">
Shreyas Talpade
</a>
,
<a href="/name/nm1493836/">
Gul Panag
</a>
,
<a href="/name/nm0439784/">
Girish Karnad
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="5898" name="nv">
5,898
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0824316" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=4oPx-REOjH0">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1093370">
<a href="/title/tt1093370/">
<img alt="Jab We Met" class="loadlate" data-tconst="tt1093370" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYmIzYmY4MGItM2I4YS00OWZhLWFmMzQtYzI2MWY1MmM3NGU1XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
38.
</span>
<a href="/title/tt1093370/">
Jab We Met
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
138 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1093370" id="checkbox-tt1093370" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1093370">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1093370">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1093370"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A depressed wealthy businessman finds his life changing after he meets a spunky and care-free young woman.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1665004/">
Imtiaz Ali
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1372788/">
Shahid Kapoor
</a>
,
<a href="/name/nm0004626/">
Kareena Kapoor
</a>
,
<a href="/name/nm1595577/">
Tarun Arora
</a>
,
<a href="/name/nm0802107/">
Dara Singh
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="49964" name="nv">
49,964
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="410,800" name="nv">
$0.41M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1093370" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=uVz6CratuGQ">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0050870">
<a href="/title/tt0050870/">
<img alt="Pyaasa" class="loadlate" data-tconst="tt0050870" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWJiNDk4NjgtYTczYi00MjNkLWI5OTItYTcxN2EwNjNiNDIyXkEyXkFqcGdeQXVyMTMzMTQ1Mjcw._V1_UY209_CR14,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
39.
</span>
<a href="/title/tt0050870/">
Pyaasa
</a>
<span class="lister-item-year text-muted unbold">
(1957)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
146 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Musical, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.5
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0050870" id="checkbox-tt0050870" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0050870">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0050870">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0050870"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A talented but indigent poet Vijay struggles for love and recognition in this selfish world.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0244870/">
Guru Dutt
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0244870/">
Guru Dutt
</a>
,
<a href="/name/nm0716851/">
Waheeda Rehman
</a>
,
<a href="/name/nm0802366/">
Mala Sinha
</a>
,
<a href="/name/nm0716839/">
Rehman
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="6005" name="nv">
6,005
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0050870" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=53V1w0Jq8po&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0319736">
<a href="/title/tt0319736/">
<img alt="The Legend of Bhagat Singh" class="loadlate" data-tconst="tt0319736" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODdhOWU3YjItM2JjYi00ODFkLWJjODgtNTU4ZWM0MTVlZGI3XkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
40.
</span>
<a href="/title/tt0319736/">
The Legend of Bhagat Singh
</a>
<span class="lister-item-year text-muted unbold">
(2002)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
155 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Biography, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0319736" id="checkbox-tt0319736" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0319736">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0319736">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0319736"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of a young revolutionary who raised an armed resistance against the British rule in India.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0764316/">
Rajkumar Santoshi
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0222426/">
Ajay Devgn
</a>
,
<a href="/name/nm0839820/">
Sushant Singh
</a>
,
<a href="/name/nm1430018/">
D. Santosh
</a>
,
<a href="/name/nm0592782/">
Akhilendra Mishra
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="15574" name="nv">
15,574
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0319736" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=mXact4Pj9Gw">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0085913">
<a href="/title/tt0085913/">
<img alt="Masoom" class="loadlate" data-tconst="tt0085913" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjZjZGM1OGQtNDgyOS00M2Y4LWI2MDgtN2JjMTM1M2U0Mzk0XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
41.
</span>
<a href="/title/tt0085913/">
Masoom
</a>
<span class="lister-item-year text-muted unbold">
(1983)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
165 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.4
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0085913" id="checkbox-tt0085913" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0085913">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0085913">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0085913"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A happy family goes through turbulent times because of a big mistake by one of the family members.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001408/">
Shekhar Kapur
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0787462/">
Naseeruddin Shah
</a>
,
<a href="/name/nm0000818/">
Shabana Azmi
</a>
,
<a href="/name/nm0361407/">
Jugal Hansraj
</a>
,
<a href="/name/nm0007107/">
Urmila Matondkar
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="3872" name="nv">
3,872
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0085913" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=4ZNWFD1karU">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0096028">
<a href="/title/tt0096028/">
<img alt="Salaam Bombay!" class="loadlate" data-tconst="tt0096028" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMWFlMjRhZmUtNzBjNC00NTdjLTlkNjItNWZmODdhODg4ZTlhXkEyXkFqcGdeQXVyMTMxMTY0OTQ@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
42.
</span>
<a href="/title/tt0096028/">
Salaam Bombay!
</a>
<span class="lister-item-year text-muted unbold">
(1988)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
113 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0096028" id="checkbox-tt0096028" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0096028">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0096028">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0096028"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
78
</span>
Metascore
</div>
<p class="">
Young Krishna struggles to survive among the drug dealers, pimps, and prostitutes in the back alleys and gutters of India.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0619762/">
Mira Nair
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0787359/">
Shafiq Syed
</a>
,
<a href="/name/nm0030117/">
Anjaan
</a>
,
<a href="/name/nm0665350/">
Amrit Patel
</a>
,
<a href="/name/nm0788890/">
Murari Sharma
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="8991" name="nv">
8,991
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="2,080,046" name="nv">
$2.08M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0096028" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=XYciGm4tziI">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0195231">
<a href="/title/tt0195231/">
<img alt="Satya" class="loadlate" data-tconst="tt0195231" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTMwMjk3MzA2OF5BMl5BanBnXkFtZTcwNjU2ODgzMQ@@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
43.
</span>
<a href="/title/tt0195231/">
Satya
</a>
<span class="lister-item-year text-muted unbold">
(1998)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
170 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.2
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0195231" id="checkbox-tt0195231" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0195231">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0195231">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0195231"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An innocent man is embroiled in underworld after being falsely charged and sets out to punish the perpetrators who subjected his life to misery.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0890060/">
Ram Gopal Varma
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0149835/">
J.D. Chakravarthi
</a>
,
<a href="/name/nm0048075/">
Manoj Bajpayee
</a>
,
<a href="/name/nm0007107/">
Urmila Matondkar
</a>
,
<a href="/name/nm0712546/">
Paresh Rawal
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="14333" name="nv">
14,333
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0195231" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2317337">
<a href="/title/tt2317337/">
<img alt="Vicky Donor" class="loadlate" data-tconst="tt2317337" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWNlODE1ZTEtOTQ5MS00N2QwLTllNjItZDQ2Y2UzMmU5YmI2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
44.
</span>
<a href="/title/tt2317337/">
Vicky Donor
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
126 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2317337" id="checkbox-tt2317337" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2317337">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2317337">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2317337"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A man is brought in by an infertility doctor to supply him with his sperm, where he becomes the biggest sperm donor for his clinic.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1999473/">
Shoojit Sircar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm4731677/">
Ayushmann Khurrana
</a>
,
<a href="/name/nm4417069/">
Yami Gautam
</a>
,
<a href="/name/nm0438465/">
Annu Kapoor
</a>
,
<a href="/name/nm0014081/">
Dolly Ahluwalia
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="41339" name="nv">
41,339
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="169,209" name="nv">
$0.17M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2317337" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=Jme-VkIzkoU">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0323013">
<a href="/title/tt0323013/">
<img alt="Lakshya" class="loadlate" data-tconst="tt0323013" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BY2Y0NjY5ZTctZWMzNC00MDQ4LTkyMWUtOGZkMzk4NWNhYWI5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
45.
</span>
<a href="/title/tt0323013/">
Lakshya
</a>
<span class="lister-item-year text-muted unbold">
(2004)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
186 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0323013" id="checkbox-tt0323013" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0323013">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0323013">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0323013"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An aimless, jobless, irresponsible grown man joins the army and matures into a battlefield hero.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1027719/">
Farhan Akhtar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004335/">
Hrithik Roshan
</a>
,
<a href="/name/nm0006689/">
Preity Zinta
</a>
,
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0700875/">
Om Puri
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="22143" name="nv">
22,143
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="752,344" name="nv">
$0.75M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0323013" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=YoKGmYyljmc">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0220832">
<a href="/title/tt0220832/">
<img alt="Vaastav: The Reality" class="loadlate" data-tconst="tt0220832" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzdhNWYwMGUtOGRjYS00ODg4LWE2NTktNzJhMGZhNGQyYzA5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
46.
</span>
<a href="/title/tt0220832/">
Vaastav: The Reality
</a>
<span class="lister-item-year text-muted unbold">
(1999)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
145 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0220832" id="checkbox-tt0220832" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0220832">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0220832">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0220832"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Consequences force an innocent man to get involved in crime after making an error.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0542498/">
Mahesh Manjrekar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004569/">
Sanjay Dutt
</a>
,
<a href="/name/nm0794363/">
Namrata Shirodkar
</a>
,
<a href="/name/nm0481363/">
Reema Lagoo
</a>
,
<a href="/name/nm0766146/">
Shivaji Satam
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="13263" name="nv">
13,263
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0220832" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=R-875kXhKl0">
Click Here To Watch Trailer on Youtube
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=j1ydiReyw9M&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0347304">
<a href="/title/tt0347304/">
<img alt="Kal Ho Naa Ho" class="loadlate" data-tconst="tt0347304" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYmVjNDIxODAtNWZiZi00ZDBlLWJmOTUtNDNjMGExNTViMzE1XkEyXkFqcGdeQXVyNTE0MDc0NTM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
47.
</span>
<a href="/title/tt0347304/">
Kal Ho Naa Ho
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
186 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Musical
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0347304" id="checkbox-tt0347304" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0347304">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0347304">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0347304"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">
54
</span>
Metascore
</div>
<p class="">
Naina, an introverted, perpetually depressed girl's life changes when she meets Aman. But Aman has a secret of his own which changes their lives forever. Embroiled in all this is Rohit, Naina's best friend who conceals his love for her.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0012541/">
Nikkhil Advani
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0006689/">
Preity Zinta
</a>
,
<a href="/name/nm0451321/">
Shah Rukh Khan
</a>
,
<a href="/name/nm0451307/">
Saif Ali Khan
</a>
,
<a href="/name/nm0080149/">
Jaya Bachchan
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="66015" name="nv">
66,015
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,787,378" name="nv">
$1.79M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0347304" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=_tArLLmV1IU">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1292703">
<a href="/title/tt1292703/">
<img alt="Oye Lucky! Lucky Oye!" class="loadlate" data-tconst="tt1292703" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjA1MjM2NTM3MV5BMl5BanBnXkFtZTcwODIyMjk5MQ@@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
48.
</span>
<a href="/title/tt1292703/">
Oye Lucky! Lucky Oye!
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
125 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Comedy, Crime
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1292703" id="checkbox-tt1292703" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1292703">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1292703">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1292703"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Lovinder Singh, a thief now in custody and facing trial, reflects on his life of crime while the press reflect on how he managed to get away with so much before being arrested.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1962313/">
Dibakar Banerjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1867717/">
Abhay Deol
</a>
,
<a href="/name/nm0712546/">
Paresh Rawal
</a>
,
<a href="/name/nm1911617/">
Neetu Chandra
</a>
,
<a href="/name/nm0700687/">
Archana Puran Singh
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="16998" name="nv">
16,998
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="80,037" name="nv">
$0.08M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1292703" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=3paPF30NJhg">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0200087">
<a href="/title/tt0200087/">
<img alt="Sarfarosh" class="loadlate" data-tconst="tt0200087" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTljOTU3MjQtMjVjYS00NWM5LTljZjQtMjhiM2JmMDYxZjZhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
49.
</span>
<a href="/title/tt0200087/">
Sarfarosh
</a>
<span class="lister-item-year text-muted unbold">
(1999)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
174 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0200087" id="checkbox-tt0200087" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0200087">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0200087">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0200087"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
After his brother is killed and father severely injured by terrorists, a young med student quits his studies to join the Indian Police Service to wipe out the terrorists.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0559877/">
John Mathew Matthan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0787462/">
Naseeruddin Shah
</a>
,
<a href="/name/nm0007114/">
Sonali Bendre
</a>
,
<a href="/name/nm0728262/">
Mukesh Rishi
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="24843" name="nv">
24,843
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0200087" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=QlULorEPMig">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0373856">
<a href="/title/tt0373856/">
<img alt="Gangaajal" class="loadlate" data-tconst="tt0373856" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjRjOWViZTgtYjA4Ny00MWJiLTkxYzktMzdlOGRmMWYwOTdjXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
50.
</span>
<a href="/title/tt0373856/">
Gangaajal
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
157 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0373856" id="checkbox-tt0373856" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0373856">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0373856">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0373856"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An IPS officer motivates and leads a dysfunctional, corrupt police force of Tezpur to fight against the corrupt politician.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0422552/">
Prakash Jha
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0222426/">
Ajay Devgn
</a>
,
<a href="/name/nm0961737/">
Gracy Singh
</a>
,
<a href="/name/nm0430803/">
Mohan Joshi
</a>
,
<a href="/name/nm1004985/">
Yashpal Sharma
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="16470" name="nv">
16,470
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0373856" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=cf5mD-Q05_8">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0215517">
<a href="/title/tt0215517/">
<img alt="Angoor" class="loadlate" data-tconst="tt0215517" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMGQ0YTQ4YzktZTMzYy00NWZhLTk0MGEtMzQ0YTE5OWUzN2U5XkEyXkFqcGdeQXVyMTgwMjgwMjM@._V1_UY209_CR11,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
51.
</span>
<a href="/title/tt0215517/">
Angoor
</a>
<span class="lister-item-year text-muted unbold">
(1982)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
131 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.3
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0215517" id="checkbox-tt0215517" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0215517">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0215517">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0215517"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Based on Shakespeare's 'A Comedy of Errors', this is a story of identical twins (2 pairs) and mistaken identities.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0347899/">
Gulzar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0474876/">
Sanjeev Kumar
</a>
,
<a href="/name/nm0154139/">
Moushumi Chatterjee
</a>
,
<a href="/name/nm0894340/">
Deven Verma
</a>
,
<a href="/name/nm0045119/">
Aruna Irani
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="5038" name="nv">
5,038
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0215517" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=L2dI4IVhfuc&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2855648">
<a href="/title/tt2855648/">
<img alt="Madras Cafe" class="loadlate" data-tconst="tt2855648" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTg1MzU5ODM4Nl5BMl5BanBnXkFtZTcwOTQ3MTM5OQ@@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
52.
</span>
<a href="/title/tt2855648/">
Madras Cafe
</a>
<span class="lister-item-year text-muted unbold">
(2013)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
130 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Drama, Thriller
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2855648" id="checkbox-tt2855648" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2855648">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2855648">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2855648"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An Indian intelligence agent journeys to a war-torn coastal island to break a resolute rebel group and meets a passionate journalist.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1999473/">
Shoojit Sircar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1303433/">
John Abraham
</a>
,
<a href="/name/nm3668216/">
Nargis Fakhri
</a>
,
<a href="/name/nm5637317/">
Raashi Khanna
</a>
,
<a href="/name/nm1388463/">
Prakash Belawadi
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="23763" name="nv">
23,763
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2855648" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2181931">
<a href="/title/tt2181931/">
<img alt="English Vinglish" class="loadlate" data-tconst="tt2181931" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjQ5YWVmYmYtOWFiZC00NGMxLWEwODctZDM2MWI4YWViN2E5XkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
53.
</span>
<a href="/title/tt2181931/">
English Vinglish
</a>
<span class="lister-item-year text-muted unbold">
(2012)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
134 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Family
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2181931" id="checkbox-tt2181931" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2181931">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2181931">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2181931"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A quiet, sweet tempered housewife endures small slights from her well-educated husband and daughter every day because of her inability to speak and understand English.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1903006/">
Gauri Shinde
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004437/">
Sridevi
</a>
,
<a href="/name/nm1300009/">
Adil Hussain
</a>
,
<a href="/name/nm0623854/">
Mehdi Nebbou
</a>
,
<a href="/name/nm3591550/">
Priya Anand
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="34882" name="nv">
34,882
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,670,773" name="nv">
$1.67M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2181931" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0072783">
<a href="/title/tt0072783/">
<img alt="Chupke Chupke" class="loadlate" data-tconst="tt0072783" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjAzMjMzMzU2N15BMl5BanBnXkFtZTgwMDkxOTE3NDE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
54.
</span>
<a href="/title/tt0072783/">
Chupke Chupke
</a>
<span class="lister-item-year text-muted unbold">
(1975)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
146 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.3
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0072783" id="checkbox-tt0072783" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0072783">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0072783">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0072783"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A newly wedded husband plays a practical joke on his wife's family with full support from his wife and friends.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0611531/">
Hrishikesh Mukherjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004429/">
Dharmendra
</a>
,
<a href="/name/nm0846616/">
Sharmila Tagore
</a>
,
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0080149/">
Jaya Bachchan
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="12150" name="nv">
12,150
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0072783" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=cY3O-lTXVL4&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1077248">
<a href="/title/tt1077248/">
<img alt="Johnny Gaddaar" class="loadlate" data-tconst="tt1077248" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDE4MmU1YTktMzY1OS00NWQ4LWExZmYtZjI3MzJjNGIxZTcxXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
55.
</span>
<a href="/title/tt1077248/">
Johnny Gaddaar
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
135 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Mystery
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1077248" id="checkbox-tt1077248" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1077248">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1077248">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1077248"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Police officers recount a tale of missing money which results in lies, deceit, betrayal and death.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1437189/">
Sriram Raghavan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004429/">
Dharmendra
</a>
,
<a href="/name/nm1267008/">
Rimi Sen
</a>
,
<a href="/name/nm1817397/">
Ashwini Kalsekar
</a>
,
<a href="/name/nm1778703/">
Neil Nitin Mukesh
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="12003" name="nv">
12,003
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1077248" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=TfbYhIxU70c">
Click Here To Watch Trailer on Youtube
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=yCILTRfA-bo&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0379370">
<a href="/title/tt0379370/">
<img alt="Maqbool" class="loadlate" data-tconst="tt0379370" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTE2NjYzOWUtMDgyZS00NGY3LTk5ZDctODMxNGYyNjUyODIwXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
56.
</span>
<a href="/title/tt0379370/">
Maqbool
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
132 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0379370" id="checkbox-tt0379370" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0379370">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0379370">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0379370"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The intrigue of the Shakespearean tragedy 'Macbeth' is transposed to the Mumbai underworld.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080235/">
Vishal Bhardwaj
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451234/">
Irrfan Khan
</a>
,
<a href="/name/nm0007102/">
Tabu
</a>
,
<a href="/name/nm0438488/">
Pankaj Kapur
</a>
,
<a href="/name/nm0787462/">
Naseeruddin Shah
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="10298" name="nv">
10,298
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0379370" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=scNDE4i-JH0">
Click Here To Watch Trailer on Youtube
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=gxBL5AULtAA">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0411469">
<a href="/title/tt0411469/">
<img alt="Hazaaron Khwaishein Aisi" class="loadlate" data-tconst="tt0411469" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjBkMjVlZTYtZGE1Mi00NzY0LWIwMTQtZTZhMGE5ZTc4ZTBiXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
57.
</span>
<a href="/title/tt0411469/">
Hazaaron Khwaishein Aisi
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
120 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0411469" id="checkbox-tt0411469" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0411469">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0411469">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0411469"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Set in the backdrop of Indian Emergency 1975, the story revolves around 3 friends whose lives changes drastically after the turn of events.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0592803/">
Sudhir Mishra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1946407/">
Kay Kay Menon
</a>
,
<a href="/name/nm1832004/">
Shiney Ahuja
</a>
,
<a href="/name/nm1696711/">
Chitrangda Singh
</a>
,
<a href="/name/nm0438632/">
Ram Kapoor
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="4830" name="nv">
4,830
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0411469" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=jL7U30ESYWk">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1230165">
<a href="/title/tt1230165/">
<img alt="Rock On!!" class="loadlate" data-tconst="tt1230165" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTM2NjIwODc4N15BMl5BanBnXkFtZTcwMDgwMzM4MQ@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
58.
</span>
<a href="/title/tt1230165/">
Rock On!!
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
145 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Music
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1230165" id="checkbox-tt1230165" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1230165">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1230165">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1230165"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Four friends reunite to relive their moments of glory as a rock band.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0438461/">
Abhishek Kapoor
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0992000/">
Arjun Rampal
</a>
,
<a href="/name/nm1027719/">
Farhan Akhtar
</a>
,
<a href="/name/nm2219430/">
Luke Kenny
</a>
,
<a href="/name/nm1327322/">
Purab Kohli
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="21460" name="nv">
21,460
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1230165" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=P7aJlKdHgWY">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0077451">
<a href="/title/tt0077451/">
<img alt="Don" class="loadlate" data-tconst="tt0077451" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzc0OGU4NGYtNzgwMy00NThjLWJmYWItZDUzZTVlZjg0YjdjXkEyXkFqcGdeQXVyNjQ1MDcxNzM@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
59.
</span>
<a href="/title/tt0077451/">
Don
</a>
<span class="lister-item-year text-muted unbold">
(1978)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
175 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Thriller
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0077451" id="checkbox-tt0077451" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0077451">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0077451">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0077451"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Don, a wanted criminal, dies in a police chase. DSP D'Silva is the only one who knows about his death, and to get hold of the gang he trains Don-lookalike Vijay. But Vijay faces danger from the police and from within the gang.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0056423/">
Chandra Barot
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0023868/">
Zeenat Aman
</a>
,
<a href="/name/nm0695199/">
Pran
</a>
,
<a href="/name/nm0407002/">
Iftekhar
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="11794" name="nv">
11,794
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0077451" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=LLxF_GAY_1I">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0072777">
<a href="/title/tt0072777/">
<img alt="Chhoti Si Baat" class="loadlate" data-tconst="tt0072777" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTAxMmUwYzktMTY0NS00ZDcwLWEwMjEtNDRkMGRlMzRhYjVmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR7,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
60.
</span>
<a href="/title/tt0072777/">
Chhoti Si Baat
</a>
<span class="lister-item-year text-muted unbold">
(1976)
</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">
123 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.3
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0072777" id="checkbox-tt0072777" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0072777">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0072777">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0072777"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A timid suitor seeks the help of a ruthless colonel to win the woman of his dreams when a bold young man begins to pursue her in this romantic comedy.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0154113/">
Basu Chatterjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0006369/">
Ashok Kumar
</a>
,
<a href="/name/nm0802378/">
Vidya Sinha
</a>
,
<a href="/name/nm0657505/">
Amol Palekar
</a>
,
<a href="/name/nm2147526/">
Asrani
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="3959" name="nv">
3,959
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0072777" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0059246">
<a href="/title/tt0059246/">
<img alt="Guide" class="loadlate" data-tconst="tt0059246" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTM4ZjhiNGItMzE2My00YjM0LWE5ZTEtYTA5NDMzZDJlOWQ3XkEyXkFqcGdeQXVyODMyODMxNDY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
61.
</span>
<a href="/title/tt0059246/">
Guide
</a>
<span class="lister-item-year text-muted unbold">
(1965)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
183 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Musical, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.4
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0059246" id="checkbox-tt0059246" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0059246">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0059246">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0059246"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When mistaken to be a sage by some villagers, an ex-tour guide reflects on his past and lost love to search for spiritual wisdom to guide the villagers.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0025629/">
Vijay Anand
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0007147/">
Dev Anand
</a>
,
<a href="/name/nm0716851/">
Waheeda Rehman
</a>
,
<a href="/name/nm0158332/">
Leela Chitnis
</a>
,
<a href="/name/nm0403952/">
Anwar Hussain
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="7784" name="nv">
7,784
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0059246" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2359810">
<a href="/title/tt2359810/">
<img alt="Raanjhanaa" class="loadlate" data-tconst="tt2359810" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BN2MzYWI2OGQtNzgxNi00ZjNiLWI1NTQtZWUyNWNiZDEyODFmXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
62.
</span>
<a href="/title/tt2359810/">
Raanjhanaa
</a>
<span class="lister-item-year text-muted unbold">
(2013)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
140 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.6
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2359810" id="checkbox-tt2359810" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2359810">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2359810">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2359810"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Kundan, the son of a Hindu pundit, discovers that his childhood sweetheart Zoya loves city-bred Akram and wants to marry him. However, he persistently seeks to win her heart.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2399862/">
Aanand L. Rai
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1333687/">
Dhanush
</a>
,
<a href="/name/nm2128238/">
Sonam Kapoor
</a>
,
<a href="/name/nm4269474/">
Mohd. Zeeshan Ayyub
</a>
,
<a href="/name/nm3283923/">
Swara Bhaskar
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="30854" name="nv">
30,854
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="875,051" name="nv">
$0.88M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2359810" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0072860">
<a href="/title/tt0072860/">
<img alt="Deewaar" class="loadlate" data-tconst="tt0072860" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWE5ZGEyNWItOGQ5YS00YjE0LTliMDgtZmNmNGVkOWIyYjRiXkEyXkFqcGdeQXVyMTI0NTA1MDI3._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
63.
</span>
<a href="/title/tt0072860/">
Deewaar
</a>
<span class="lister-item-year text-muted unbold">
(1975)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
174 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0072860" id="checkbox-tt0072860" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0072860">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0072860">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0072860"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Vijay struggles as a dockworker and eventually becomes a leading figure of the underworld, while his younger brother Ravi is an educated, upright policeman. This divide causes problems in their relationship.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0007181/">
Yash Chopra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0004434/">
Shashi Kapoor
</a>
,
<a href="/name/nm0747131/">
Nirupa Roy
</a>
,
<a href="/name/nm0044916/">
Parveen Babi
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="10551" name="nv">
10,551
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0072860" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=DuJ_7UVyGIc">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2377938">
<a href="/title/tt2377938/">
<img alt="Special Chabbis" class="loadlate" data-tconst="tt2377938" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTQ1NDI5MjMzNF5BMl5BanBnXkFtZTcwMTc0MDQwOQ@@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
64.
</span>
<a href="/title/tt2377938/">
Special Chabbis
</a>
<span class="lister-item-year text-muted unbold">
(2013)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
144 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Thriller
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2377938" id="checkbox-tt2377938" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2377938">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2377938">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2377938"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A gang of con-men rob prominent rich businessmen and politicians by posing as C.B.I and income tax officers.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm3109770/">
Neeraj Pandey
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0474774/">
Akshay Kumar
</a>
,
<a href="/name/nm0451600/">
Anupam Kher
</a>
,
<a href="/name/nm0048075/">
Manoj Bajpayee
</a>
,
<a href="/name/nm0792116/">
Jimmy Sheirgill
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="53476" name="nv">
53,476
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,079,369" name="nv">
$1.08M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2377938" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0063404">
<a href="/title/tt0063404/">
<img alt="Padosan" class="loadlate" data-tconst="tt0063404" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOTgxNDk4YjgtMjE3OC00MWE0LTgyZWYtM2I1ZTQwYjk4NDYyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
65.
</span>
<a href="/title/tt0063404/">
Padosan
</a>
<span class="lister-item-year text-muted unbold">
(1968)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
157 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Musical, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8.1
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0063404" id="checkbox-tt0063404" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0063404">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0063404">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0063404"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A simple man from a village falls in love with his new neighbor. He enlists the help of his musical-theater friends to woo the lovely girl-next-door away from her music teacher.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0841918/">
Jyoti Swaroop
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004570/">
Sunil Dutt
</a>
,
<a href="/name/nm0052570/">
Saira Banu
</a>
,
<a href="/name/nm0576454/">
Mehmood
</a>
,
<a href="/name/nm0474822/">
Kishore Kumar
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="6598" name="nv">
6,598
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0063404" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=jwzeYkkwBOQ">
Click Here To Watch Trailer on Youtube
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=NQ6yBdXmU_4&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1266583">
<a href="/title/tt1266583/">
<img alt="Mumbai Meri Jaan" class="loadlate" data-tconst="tt1266583" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTMwMmQ3YmYtODU3MS00NzRhLTkyZGEtM2Q5OWRlMGQxMzIyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
66.
</span>
<a href="/title/tt1266583/">
Mumbai Meri Jaan
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
134 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1266583" id="checkbox-tt1266583" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1266583">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1266583">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1266583"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A moving portrayal of the 2006 train bombings in Mumbai, this Indian drama follows the interconnected stories of several strangers.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1723225/">
Nishikant Kamat
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0712546/">
Paresh Rawal
</a>
,
<a href="/name/nm1946407/">
Kay Kay Menon
</a>
,
<a href="/name/nm0451234/">
Irrfan Khan
</a>
,
<a href="/name/nm0534856/">
Madhavan
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="6164" name="nv">
6,164
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="13,588" name="nv">
$0.01M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1266583" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=xhE3B2OCL_U">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0402014">
<a href="/title/tt0402014/">
<img alt="Ab Tak Chhappan" class="loadlate" data-tconst="tt0402014" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzNkYzEyMDItNWI1OS00YjYxLTljNDUtYzZkYWFhMzdjNjg1XkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
67.
</span>
<a href="/title/tt0402014/">
Ab Tak Chhappan
</a>
<span class="lister-item-year text-muted unbold">
(2004)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
129 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0402014" id="checkbox-tt0402014" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0402014">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0402014">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0402014"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
An honest encounter specialist's life begins to change with the arrival of a new police commissioner who has ties with a local don.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0024912/">
Shimit Amin
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0007113/">
Nana Patekar
</a>
,
<a href="/name/nm0720763/">
Revathi
</a>
,
<a href="/name/nm1004985/">
Yashpal Sharma
</a>
,
<a href="/name/nm0012881/">
Mohan Agashe
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="8529" name="nv">
8,529
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0402014" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=1tKzKJko34A">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt2213054">
<a href="/title/tt2213054/">
<img alt="Kai po che!" class="loadlate" data-tconst="tt2213054" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTgwNTAwMjEzMF5BMl5BanBnXkFtZTcwNzMzODY4OA@@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
68.
</span>
<a href="/title/tt2213054/">
Kai po che!
</a>
<span class="lister-item-year text-muted unbold">
(2013)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
130 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Sport
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt2213054" id="checkbox-tt2213054" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt2213054">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt2213054">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt2213054"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">
40
</span>
Metascore
</div>
<p class="">
Three friends growing up in India at the turn of the millennium set out to open a training academy to produce the country's next cricket stars.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0438461/">
Abhishek Kapoor
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm2815326/">
Amit Sadh
</a>
,
<a href="/name/nm3818286/">
Sushant Singh Rajput
</a>
,
<a href="/name/nm3822770/">
Rajkummar Rao
</a>
,
<a href="/name/nm3629670/">
Amrita Puri
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="35121" name="nv">
35,121
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,122,527" name="nv">
$1.12M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt2213054" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0043306">
<a href="/title/tt0043306/">
<img alt="Awaara" class="loadlate" data-tconst="tt0043306" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZDY5NmYzY2UtYWFiMy00MTRmLWEwNDQtZjRjMWUxYTNhMTM3XkEyXkFqcGdeQXVyMDkwNTkwNg@@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
69.
</span>
<a href="/title/tt0043306/">
Awaara
</a>
<span class="lister-item-year text-muted unbold">
(1951)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
193 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Musical, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0043306" id="checkbox-tt0043306" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0043306">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0043306">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0043306"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A poor young man named Raj joins a criminal gang to feed his mother. But when he falls in love with Rita, he decides to reform himself for her.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0004292/">
Raj Kapoor
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004292/">
Raj Kapoor
</a>
,
<a href="/name/nm0004291/">
Nargis
</a>
,
<a href="/name/nm0004432/">
Prithviraj Kapoor
</a>
,
<a href="/name/nm0802144/">
K.N. Singh
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="3917" name="nv">
3,917
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0043306" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0048613">
<a href="/title/tt0048613/">
<img alt="Shree 420" class="loadlate" data-tconst="tt0048613" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzg4Y2NjZjctMzU3My00YTY4LWJmNjUtZmMxNzVlZWRkNTk4XkEyXkFqcGdeQXVyNjQ1MDcxNzM@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
70.
</span>
<a href="/title/tt0048613/">
Shree 420
</a>
<span class="lister-item-year text-muted unbold">
(1955)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
168 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0048613" id="checkbox-tt0048613" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0048613">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0048613">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0048613"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When a young man from a small town decides to make it big in a city, he faces several challenges.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0004292/">
Raj Kapoor
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004291/">
Nargis
</a>
,
<a href="/name/nm0004292/">
Raj Kapoor
</a>
,
<a href="/name/nm0618918/">
Nadira
</a>
,
<a href="/name/nm0625973/">
Nemo
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="2684" name="nv">
2,684
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0048613" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0150433">
<a href="/title/tt0150433/">
<img alt="Earth" class="loadlate" data-tconst="tt0150433" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNzZjMzI0OTMtMzcwMy00ZWNhLWFiM2MtZDZmMGRiYWVjY2U2XkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
71.
</span>
<a href="/title/tt0150433/">
Earth
</a>
<span class="lister-item-year text-muted unbold">
(1998)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
110 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Romance, War
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0150433" id="checkbox-tt0150433" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0150433">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0150433">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0150433"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
71
</span>
Metascore
</div>
<p class="">
It's 1947 and the borderlines between India and Pakistan are being drawn. A young girl witnesses tragedy as her ayah (nanny) is caught between the love of two men and the rising tide of political and religious violence.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0576548/">
Deepa Mehta
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0201903/">
Nandita Das
</a>
,
<a href="/name/nm0451391/">
Rahul Khanna
</a>
,
<a href="/name/nm0786040/">
Maia Sethna
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="7682" name="nv">
7,682
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="528,972" name="nv">
$0.53M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0150433" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=mno-fSB0XfM">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0497915">
<a href="/title/tt0497915/">
<img alt="Gunda" class="loadlate" data-tconst="tt0497915" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzkzODkxNGUtYTA3MS00ZDVkLWFmYTgtMGM5YjViOGU0YjU0XkEyXkFqcGdeQXVyNDY5MTUyNjU@._V1_UY209_CR7,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
72.
</span>
<a href="/title/tt0497915/">
Gunda
</a>
<span class="lister-item-year text-muted unbold">
(1998)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
129 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Comedy, Crime
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.3
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0497915" id="checkbox-tt0497915" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0497915">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0497915">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0497915"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
When a coolie's family is murdered by a group of gangsters and politicians, he swears revenge on them.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1328135/">
Kanti Shah
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0149822/">
Mithun Chakraborty
</a>
,
<a href="/name/nm0728262/">
Mukesh Rishi
</a>
,
<a href="/name/nm0430803/">
Mohan Joshi
</a>
,
<a href="/name/nm0007106/">
Shakti Kapoor
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="10172" name="nv">
10,172
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0497915" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=nbzzJKOKa_8&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0102636">
<a href="/title/tt0102636/">
<img alt="Parinda" class="loadlate" data-tconst="tt0102636" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMjA5ODU4ODU2MV5BMl5BanBnXkFtZTcwMTI3ODgzMQ@@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
73.
</span>
<a href="/title/tt0102636/">
Parinda
</a>
<span class="lister-item-year text-muted unbold">
(1989)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
154 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0102636" id="checkbox-tt0102636" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0102636">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0102636">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0102636"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A man's friend, a police officer, is assassinated by gangsters in broad daylight. He discovers that his elder brother works in the same gang and decides to avenge his friend's death by infiltrating the gang.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006765/">
Vidhu Vinod Chopra
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0006763/">
Jackie Shroff
</a>
,
<a href="/name/nm0438463/">
Anil Kapoor
</a>
,
<a href="/name/nm0007113/">
Nana Patekar
</a>
,
<a href="/name/nm0002043/">
Madhuri Dixit
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="3249" name="nv">
3,249
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0102636" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
Original Title- Parinda
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=3r6R5eiZkpA">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1288638">
<a href="/title/tt1288638/">
<img alt="Dasvidaniya" class="loadlate" data-tconst="tt1288638" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWU3ZTU2OGUtZGJlYS00Yjc5LTk0ZTctOGZkZGZmODkxYmVmXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
74.
</span>
<a href="/title/tt1288638/">
Dasvidaniya
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
113 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1288638" id="checkbox-tt1288638" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1288638">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1288638">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1288638"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A man who loves to make "to-do lists" makes one last bucket list when he realizes he is about to die.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm3125271/">
Shashant Shah
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0665555/">
Vinay Pathak
</a>
,
<a href="/name/nm1934428/">
Sarita Joshi
</a>
,
<a href="/name/nm0438494/">
Rajat Kapoor
</a>
,
<a href="/name/nm0795661/">
Saurabh Shukla
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="6240" name="nv">
6,240
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1288638" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=MYfIJcOsg4I">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0222012">
<a href="/title/tt0222012/">
<img alt="Hey Ram" class="loadlate" data-tconst="tt0222012" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMzYxYTg2OGItOTI3ZC00YjViLTgxMzEtMzg0MTk1ZTc1MGMyXkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
75.
</span>
<a href="/title/tt0222012/">
Hey Ram
</a>
<span class="lister-item-year text-muted unbold">
(2000)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
186 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, History
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0222012" id="checkbox-tt0222012" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0222012">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0222012">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0222012"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Saketh Ram's wife is raped and killed during direct action day riots in Calcutta. He is convinced that Mahatma Gandhi is responsible for all the problems happening in the country and sets out to kill him.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0352032/">
Kamal Haasan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0352032/">
Kamal Haasan
</a>
,
<a href="/name/nm0451321/">
Shah Rukh Khan
</a>
,
<a href="/name/nm0611552/">
Rani Mukerji
</a>
,
<a href="/name/nm0004564/">
Hema Malini
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="12103" name="nv">
12,103
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="274,675" name="nv">
$0.27M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0222012" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0347779">
<a href="/title/tt0347779/">
<img alt="Pinjar: Beyond Boundaries..." class="loadlate" data-tconst="tt0347779" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNjZhOTVjYTctNGFhOC00NTAxLTg4NmMtZjNiNTVkNWMwODA3XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
76.
</span>
<a href="/title/tt0347779/">
Pinjar: Beyond Boundaries...
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
188 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0347779" id="checkbox-tt0347779" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0347779">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0347779">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0347779"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
In the days leading up to Partition, a Hindu woman is abducted by a Muslim man. Soon, she finds herself not only forced into marriage, but living in a new country as the borders between India and Pakistan are drawn.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1363374/">
Chandra Prakash Dwivedi
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0007107/">
Urmila Matondkar
</a>
,
<a href="/name/nm0048075/">
Manoj Bajpayee
</a>
,
<a href="/name/nm0839634/">
Sanjay Suri
</a>
,
<a href="/name/nm1025281/">
Sandali Sinha
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="2698" name="nv">
2,698
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0347779" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0451919">
<a href="/title/tt0451919/">
<img alt="Socha Na Tha" class="loadlate" data-tconst="tt0451919" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNTY2ZTU2ZDQtOGViNC00YjA5LWJjNDAtNWFhOGYyMTQyZjFkXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR9,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
77.
</span>
<a href="/title/tt0451919/">
Socha Na Tha
</a>
<span class="lister-item-year text-muted unbold">
(2005)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
137 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.4
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0451919" id="checkbox-tt0451919" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0451919">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0451919">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0451919"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A boy is forced meet a girl for an arranged marriage but even though he refuses the match, they secretly become friends. As things get complicated and both get engaged to different people they realize they've fallen in love with each other.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1665004/">
Imtiaz Ali
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1867717/">
Abhay Deol
</a>
,
<a href="/name/nm1779702/">
Ayesha Takia
</a>
,
<a href="/name/nm0422586/">
Ayesha Jhulka
</a>
,
<a href="/name/nm1869453/">
Apoorva Jha
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="7556" name="nv">
7,556
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0451919" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=3DNs99fqfes">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0499375">
<a href="/title/tt0499375/">
<img alt="Guru" class="loadlate" data-tconst="tt0499375" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWE3OGQyYTQtMGQzNy00YjI0LTkwYWUtY2FjZjNmODFlNDNkXkEyXkFqcGdeQXVyMTEzNzg0Mjkx._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
78.
</span>
<a href="/title/tt0499375/">
Guru
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
162 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0499375" id="checkbox-tt0499375" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0499375">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0499375">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0499375"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
70
</span>
Metascore
</div>
<p class="">
A villager, Gurukant Desai, arrives in Bombay 1958, and rises from its streets to become the GURU, the biggest tycoon in Indian history.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0711745/">
Mani Ratnam
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0149822/">
Mithun Chakraborty
</a>
,
<a href="/name/nm0045393/">
Abhishek Bachchan
</a>
,
<a href="/name/nm0706787/">
Aishwarya Rai Bachchan
</a>
,
<a href="/name/nm0534856/">
Madhavan
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="22822" name="nv">
22,822
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="2,087,000" name="nv">
$2.09M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0499375" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=xl8ebRqRBCM">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0068257">
<a href="/title/tt0068257/">
<img alt="Bawarchi" class="loadlate" data-tconst="tt0068257" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTg5NDIyNzAwOV5BMl5BanBnXkFtZTgwMjk3ODM3NDE@._V1_UY209_CR8,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
79.
</span>
<a href="/title/tt0068257/">
Bawarchi
</a>
<span class="lister-item-year text-muted unbold">
(1972)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
130 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Musical, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0068257" id="checkbox-tt0068257" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0068257">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0068257">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0068257"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A dysfunctional middle-class family is transformed due to the influence of their new multi-talented household servant - but he might be too good to be true.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0611531/">
Hrishikesh Mukherjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004435/">
Rajesh Khanna
</a>
,
<a href="/name/nm0080149/">
Jaya Bachchan
</a>
,
<a href="/name/nm0456096/">
Usha Kiran
</a>
,
<a href="/name/nm0154129/">
Harindranath Chattopadhyay
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="3873" name="nv">
3,873
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0068257" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0920464">
<a href="/title/tt0920464/">
<img alt="Manorama: Six Feet Under" class="loadlate" data-tconst="tt0920464" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOGNjN2M4MDItMzc3YS00ZjdiLTlhMDMtYjk0OWQzMzc1ZjRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
80.
</span>
<a href="/title/tt0920464/">
Manorama: Six Feet Under
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
137 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Mystery
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.6
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0920464" id="checkbox-tt0920464" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0920464">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0920464">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0920464"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Satyaveer accepts money from Manorama, wife of an irrigation minister, to collect evidence against her husband for having an extra-marital affair. He accepts, unaware that he too is being deceived.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2480204/">
Navdeep Singh
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1867717/">
Abhay Deol
</a>
,
<a href="/name/nm1493836/">
Gul Panag
</a>
,
<a href="/name/nm0784025/">
Raima Sen
</a>
,
<a href="/name/nm0045136/">
Sarika
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="7787" name="nv">
7,787
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0920464" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=TNsV1wrOXp0">
Click Here To Watch Trailer on Youtube
</a>
</b>
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=K6naZQwvWVM&feature=watch-now-button&wide=1">
Click Here To Watch Movie Legally on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0093578">
<a href="/title/tt0093578/">
<img alt="Mr. India" class="loadlate" data-tconst="tt0093578" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTdhMmJjYjMtMjZmOC00NjhkLWE3MjQtODAzNDI4NmM5OTA5XkEyXkFqcGdeQXVyODAzNzAwOTU@._V1_UX140_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
81.
</span>
<a href="/title/tt0093578/">
Mr. India
</a>
<span class="lister-item-year text-muted unbold">
(1987)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
179 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Comedy, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0093578" id="checkbox-tt0093578" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0093578">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0093578">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0093578"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A poor but big-hearted man takes orphans into his home. After discovering his scientist father's invisibility device, he rises to the occasion and fights to save his children and all of India from the clutches of a megalomaniac.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0001408/">
Shekhar Kapur
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0438463/">
Anil Kapoor
</a>
,
<a href="/name/nm0004437/">
Sridevi
</a>
,
<a href="/name/nm0700869/">
Amrish Puri
</a>
,
<a href="/name/nm0442479/">
Satish Kaushik
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="14754" name="nv">
14,754
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0093578" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=0PvMVDRDZIQ">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1241195">
<a href="/title/tt1241195/">
<img alt="Aamir" class="loadlate" data-tconst="tt1241195" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMGE3MzQ4YzYtNjU4My00ZjYxLTg2ZmYtMTg5OTU0N2QwYTc0XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
82.
</span>
<a href="/title/tt1241195/">
Aamir
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
99 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1241195" id="checkbox-tt1241195" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1241195">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1241195">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1241195"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A doctor of Indian origin returning to Mumbai from London is forced to participate in a terrorist plot.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2955107/">
Raj Kumar Gupta
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm3901368/">
Rajeev Khandelwal
</a>
,
<a href="/name/nm1027293/">
Aishwarya
</a>
,
<a href="/name/nm3035236/">
Vasan Bala
</a>
,
<a href="/name/nm3256703/">
Chinkal
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="11039" name="nv">
11,039
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1241195" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=vHgYGTvMpBw">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0211126">
<a href="/title/tt0211126/">
<img alt="Zakhm" class="loadlate" data-tconst="tt0211126" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjQ1Y2VjMDAtNjc2MS00ZDhhLTgxNzEtMDE0ZjYzZGVhODAyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
83.
</span>
<a href="/title/tt0211126/">
Zakhm
</a>
<span class="lister-item-year text-muted unbold">
(1998)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
125 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0211126" id="checkbox-tt0211126" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0211126">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0211126">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0211126"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Amidst religious riots, a son deals with his mother's life-threatening injuries, and her last request.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0080315/">
Mahesh Bhatt
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0222426/">
Ajay Devgn
</a>
,
<a href="/name/nm0080324/">
Pooja Bhatt
</a>
,
<a href="/name/nm0015459/">
Nagarjuna Akkineni
</a>
,
<a href="/name/nm0007114/">
Sonali Bendre
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="3095" name="nv">
3,095
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0211126" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0240200">
<a href="/title/tt0240200/">
<img alt="Water" class="loadlate" data-tconst="tt0240200" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZmQ4ODNjNjctYzkxYS00N2MzLWE0ZTctOGVkYzM2NjRmZDMyXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
84.
</span>
<a href="/title/tt0240200/">
Water
</a>
<span class="lister-item-year text-muted unbold">
(I) (2005)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
(Banned)
</span>
<span class="ghost">
|
</span>
<span class="runtime">
117 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0240200" id="checkbox-tt0240200" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0240200">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0240200">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0240200"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
77
</span>
Metascore
</div>
<p class="">
Set in colonial India against Gandhi's rise to power, it's the story of 8-year-old Chuyia, who is widowed and sent to a home to live in penitence; once there, Chuyia's feisty presence deeply affects the lives of the other residents.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0576548/">
Deepa Mehta
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0712908/">
Lisa Ray
</a>
,
<a href="/name/nm1303433/">
John Abraham
</a>
,
<a href="/name/nm0084443/">
Seema Biswas
</a>
,
<a href="/name/nm1084553/">
Sarala Kariyawasam
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="14639" name="nv">
14,639
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="3,222,857" name="nv">
$3.22M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0240200" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=RewNn2r2P3g">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1907761">
<a href="/title/tt1907761/">
<img alt="Stanley Ka Dabba" class="loadlate" data-tconst="tt1907761" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZWVlMzlmOWItYTgwMi00MjExLTgwNDItNWI4YzY2MTgzMWJlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR3,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
85.
</span>
<a href="/title/tt1907761/">
Stanley Ka Dabba
</a>
<span class="lister-item-year text-muted unbold">
(2011)
</span>
</h3>
<p class="text-muted text-small">
<span class="runtime">
96 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Family
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1907761" id="checkbox-tt1907761" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1907761">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1907761">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1907761"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A school-teacher, who forces children to share their food with him, forbids one from entering the school until he brings his own Tiffin/Lunch-box.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1244760/">
Amole Gupte
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm4428422/">
Partho A. Gupte
</a>
,
<a href="/name/nm4473016/">
Numaan Sheikh
</a>
,
<a href="/name/nm4473026/">
Abhishek Reddy
</a>
,
<a href="/name/nm4474558/">
Sai Shara Shetty
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="6687" name="nv">
6,687
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1907761" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=Fdd9Y166JXY">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0098999">
<a href="/title/tt0098999/">
<img alt="Agneepath" class="loadlate" data-tconst="tt0098999" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BOGIyNGNhN2EtYTZiNC00MDJjLWI2M2ItZjA1MTBlYmNiODNlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR10,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
86.
</span>
<a href="/title/tt0098999/">
Agneepath
</a>
<span class="lister-item-year text-muted unbold">
(1990)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
16
</span>
<span class="ghost">
|
</span>
<span class="runtime">
174 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0098999" id="checkbox-tt0098999" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0098999">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0098999">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0098999"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A young boy's quest for revenge leads him to become a gangster as an adult, and with each day he becomes more and more like his enemies. Can he find vengeance and redemption?
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0002172/">
Mukul Anand
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0149822/">
Mithun Chakraborty
</a>
,
<a href="/name/nm0534863/">
Madhavi
</a>
,
<a href="/name/nm0624174/">
Neelam Kothari
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="8670" name="nv">
8,670
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0098999" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=vGyhFvL3CBU">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1188996">
<a href="/title/tt1188996/">
<img alt="My Name Is Khan" class="loadlate" data-tconst="tt1188996" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMTUyMTA4NDYzMV5BMl5BanBnXkFtZTcwMjk5MzcxMw@@._V1_UY209_CR0,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
87.
</span>
<a href="/title/tt1188996/">
My Name Is Khan
</a>
<span class="lister-item-year text-muted unbold">
(2010)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
165 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1188996" id="checkbox-tt1188996" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1188996">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1188996">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1188996"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">
50
</span>
Metascore
</div>
<p class="">
An Indian Muslim man with Asperger's syndrome takes a challenge to speak to the President of the United States seriously and embarks on a cross-country journey.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0424103/">
Karan Johar
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451321/">
Shah Rukh Khan
</a>
,
<a href="/name/nm0004418/">
Kajol
</a>
,
<a href="/name/nm2974366/">
Sheetal Menon
</a>
,
<a href="/name/nm1995953/">
Katie A. Keane
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="102380" name="nv">
102,380
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="4,018,695" name="nv">
$4.02M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1188996" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=_uNDm6YfN2k">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0095936">
<a href="/title/tt0095936/">
<img alt="Qayamat Se Qayamat Tak" class="loadlate" data-tconst="tt0095936" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZDAwM2E2YmEtN2I3Zi00NmY5LTkxNTAtODVmNmM4MmY2YTFjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
88.
</span>
<a href="/title/tt0095936/">
Qayamat Se Qayamat Tak
</a>
<span class="lister-item-year text-muted unbold">
(1988)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
162 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Musical, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.5
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0095936" id="checkbox-tt0095936" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0095936">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0095936">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0095936"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Despite knowing that their respective families are bitter enemies, Raj and Rashmi fall in love with each other and decide to elope.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0451257/">
Mansoor Khan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0004487/">
Juhi Chawla
</a>
,
<a href="/name/nm0438474/">
Goga Kapoor
</a>
,
<a href="/name/nm0846681/">
Dalip Tahil
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="10649" name="nv">
10,649
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0095936" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0338490">
<a href="/title/tt0338490/">
<img alt="3 Deewarein" class="loadlate" data-tconst="tt0338490" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYmNjNmY0YjctNGQ4YS00MjI0LTk3NmUtNTU0YzZmZDI1ZDNhXkEyXkFqcGdeQXVyMjUxMTY3ODM@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
89.
</span>
<a href="/title/tt0338490/">
3 Deewarein
</a>
<span class="lister-item-year text-muted unbold">
(2003)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
115 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0338490" id="checkbox-tt0338490" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0338490">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0338490">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0338490"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of a documentary movie-maker who films the reformation story of three hardened criminals within the prison walls - and in the process, finds redemption in her own life.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0474398/">
Nagesh Kukunoor
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0787462/">
Naseeruddin Shah
</a>
,
<a href="/name/nm0006763/">
Jackie Shroff
</a>
,
<a href="/name/nm0004487/">
Juhi Chawla
</a>
,
<a href="/name/nm0474398/">
Nagesh Kukunoor
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="2407" name="nv">
2,407
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0338490" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0069671">
<a href="/title/tt0069671/">
<img alt="Abhimaan" class="loadlate" data-tconst="tt0069671" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYWU2ODYxYzktMTcwMy00YWM2LWExNmYtNzZlMjhmODU3Mzg5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR10,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
90.
</span>
<a href="/title/tt0069671/">
Abhimaan
</a>
<span class="lister-item-year text-muted unbold">
(1973)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
122 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Drama, Musical
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.9
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0069671" id="checkbox-tt0069671" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0069671">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0069671">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0069671"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A popular singer convinces his new wife to enter show-business, but his pride is wounded when she outshines him.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0611531/">
Hrishikesh Mukherjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0080149/">
Jaya Bachchan
</a>
,
<a href="/name/nm2147526/">
Asrani
</a>
,
<a href="/name/nm0082848/">
Bindu
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="2716" name="nv">
2,716
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0069671" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0432047">
<a href="/title/tt0432047/">
<img alt="Sarkar" class="loadlate" data-tconst="tt0432047" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZTYwNGU2YzQtMDRjNS00MjlmLTk1MDEtMjBmYWQ3ZjY0NWRjXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_UY209_CR7,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
91.
</span>
<a href="/title/tt0432047/">
Sarkar
</a>
<span class="lister-item-year text-muted unbold">
(2005)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
124 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Crime, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.6
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0432047" id="checkbox-tt0432047" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0432047">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0432047">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0432047"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Subhash Nagre runs a parallel government in the city where he has a cult following. When his enemies plot to murder him, his son takes charge and stands up against them.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0890060/">
Ram Gopal Varma
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0000821/">
Amitabh Bachchan
</a>
,
<a href="/name/nm0045393/">
Abhishek Bachchan
</a>
,
<a href="/name/nm1946407/">
Kay Kay Menon
</a>
,
<a href="/name/nm0665554/">
Supriya Pathak
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="16281" name="nv">
16,281
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0432047" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=Z2kyrxwaMeQ">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1014672">
<a href="/title/tt1014672/">
<img alt="Bheja Fry" class="loadlate" data-tconst="tt1014672" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BODUzZmQ0YjMtZjVhYi00ODc1LWJjNWQtY2JjM2RmM2ZmMmI2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR4,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
92.
</span>
<a href="/title/tt1014672/">
Bheja Fry
</a>
<span class="lister-item-year text-muted unbold">
(2007)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
95 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.6
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1014672" id="checkbox-tt1014672" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1014672">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1014672">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1014672"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Ranjit, who makes fun of idiots, gets completely annoyed when he invites a tax inspector and a singer to his house.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2625699/">
Sagar Ballary
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0665555/">
Vinay Pathak
</a>
,
<a href="/name/nm0438494/">
Rajat Kapoor
</a>
,
<a href="/name/nm0045136/">
Sarika
</a>
,
<a href="/name/nm0813763/">
Milind Soman
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="11609" name="nv">
11,609
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1014672" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=W_DrlzzPiFM">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0050188">
<a href="/title/tt0050188/">
<img alt="Mother India" class="loadlate" data-tconst="tt0050188" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDcyMDE0ZWUtYjI3Ny00N2U2LWEzMTAtYzE4OTEzZjgyNzQ1XkEyXkFqcGdeQXVyNjQ1MDcxNzM@._V1_UY209_CR5,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
93.
</span>
<a href="/title/tt0050188/">
Mother India
</a>
<span class="lister-item-year text-muted unbold">
(1957)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
172 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Comedy, Drama
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0050188" id="checkbox-tt0050188" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0050188">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0050188">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0050188"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore mixed">
53
</span>
Metascore
</div>
<p class="">
In this melodrama, a poverty-stricken woman raises her sons through many trials and tribulations. But no matter the struggles, always sticks to her own moral code.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006371/">
Mehboob Khan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0004291/">
Nargis
</a>
,
<a href="/name/nm0004570/">
Sunil Dutt
</a>
,
<a href="/name/nm0006348/">
Rajendra Kumar
</a>
,
<a href="/name/nm0474855/">
Raaj Kumar
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="8968" name="nv">
8,968
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0050188" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0473367">
<a href="/title/tt0473367/">
<img alt="Jaane Tu... Ya Jaane Na" class="loadlate" data-tconst="tt0473367" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDUxYTFiODktNDI5NC00YmI1LThiMWUtN2FjYTU2ZTQ5ODQ1XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
94.
</span>
<a href="/title/tt0473367/">
Jaane Tu... Ya Jaane Na
</a>
<span class="lister-item-year text-muted unbold">
(2008)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
155 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.5
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0473367" id="checkbox-tt0473367" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0473367">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0473367">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0473367"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Two best friends being convinced that they are not in love search for each other's love.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1063072/">
Abbas Tyrewala
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1405359/">
Imran Khan
</a>
,
<a href="/name/nm1299510/">
Genelia D'Souza
</a>
,
<a href="/name/nm1967908/">
Manjari Fadnnis
</a>
,
<a href="/name/nm3071216/">
Ayaz Khan
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="26184" name="nv">
26,184
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="600,922" name="nv">
$0.60M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0473367" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=97vzVVM6ZhE">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1934231">
<a href="/title/tt1934231/">
<img alt="Delhi Belly" class="loadlate" data-tconst="tt1934231" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BZjJmOTNjNDgtY2E3ZC00OTRmLTlmYWItNjRkMzQ4NzZlY2M2XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
95.
</span>
<a href="/title/tt1934231/">
Delhi Belly
</a>
<span class="lister-item-year text-muted unbold">
(2011)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
103 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Action, Comedy, Crime
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.6
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1934231" id="checkbox-tt1934231" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1934231">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1934231">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1934231"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<div class="inline-block ratings-metascore">
<span class="metascore favorable">
66
</span>
Metascore
</div>
<p class="">
Three struggling room-mates unknowingly become potential prey of a ruthless gangster.
</p>
<p class="text-muted text-small">
Directors:
<a href="/name/nm3218978/">
Abhinay Deo
</a>
,
<a href="/name/nm2356415/">
Akshat Verma
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1405359/">
Imran Khan
</a>
,
<a href="/name/nm1983888/">
Vir Das
</a>
,
<a href="/name/nm2622986/">
Kunaal Roy Kapur
</a>
,
<a href="/name/nm1376654/">
Shenaz Treasury
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="28872" name="nv">
28,872
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="1,531,757" name="nv">
$1.53M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1934231" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=xcKn9BxTg1A">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1324059">
<a href="/title/tt1324059/">
<img alt="Wake Up Sid" class="loadlate" data-tconst="tt1324059" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMDc1ZDBkODMtYjI0MC00NDcyLWFhMGUtYzM4NDQyMzgyYzg1XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
96.
</span>
<a href="/title/tt1324059/">
Wake Up Sid
</a>
<span class="lister-item-year text-muted unbold">
(2009)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
138 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.6
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1324059" id="checkbox-tt1324059" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1324059">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1324059">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1324059"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
The story of a lazy Mumbai college student who does absolutely nothing, with a turn of events will Sid realize his potential in this world and become a success in the fast-paced life of Mumbai.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm2209781/">
Ayan Mukherjee
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm1633541/">
Ranbir Kapoor
</a>
,
<a href="/name/nm1234298/">
Konkona Sen Sharma
</a>
,
<a href="/name/nm0665554/">
Supriya Pathak
</a>
,
<a href="/name/nm0451600/">
Anupam Kher
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="29800" name="nv">
29,800
</span>
<span class="ghost">
|
</span>
<span class="text-muted">
Gross:
</span>
<span data-value="717,977" name="nv">
$0.72M
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1324059" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0114234">
<a href="/title/tt0114234/">
<img alt="Rangeela" class="loadlate" data-tconst="tt0114234" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNmQxOWQ5NzgtMjVkNS00NDJiLTg1NzgtY2FkY2FlNzFjYTEwXkEyXkFqcGdeQXVyMTAxNjY4MzY2._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
97.
</span>
<a href="/title/tt0114234/">
Rangeela
</a>
<span class="lister-item-year text-muted unbold">
(1995)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
142 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Musical
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.5
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0114234" id="checkbox-tt0114234" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0114234">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0114234">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0114234"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A middle class young woman, who dreams of Bollywood fame, is caught in a love triangle between her childhood friend and a famous actor.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0890060/">
Ram Gopal Varma
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0007107/">
Urmila Matondkar
</a>
,
<a href="/name/nm0451148/">
Aamir Khan
</a>
,
<a href="/name/nm0006763/">
Jackie Shroff
</a>
,
<a href="/name/nm0004109/">
Gulshan Grover
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="9527" name="nv">
9,527
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0114234" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0076696">
<a href="/title/tt0076696/">
<img alt="Shatranj Ke Khilari" class="loadlate" data-tconst="tt0076696" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BMWJhYTY5Y2EtODU5NC00MzRmLWFhMDgtNmQ5OTE2YjBlMjNlXkEyXkFqcGdeQXVyNjMwMjk0MTQ@._V1_UY209_CR6,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
98.
</span>
<a href="/title/tt0076696/">
Shatranj Ke Khilari
</a>
<span class="lister-item-year text-muted unbold">
(1977)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
U
</span>
<span class="ghost">
|
</span>
<span class="runtime">
129 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, History
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.7
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0076696" id="checkbox-tt0076696" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0076696">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0076696">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0076696"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Wazed Ali Shah was the ruler of one of the last independent kingdoms of India. The British, intent on controlling this rich country, had sent General Outram on a secret mission to clear the...
<a href="/title/tt0076696/plotsummary">
See full summary
</a>
»
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm0006249/">
Satyajit Ray
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0474876/">
Sanjeev Kumar
</a>
,
<a href="/name/nm0006762/">
Saeed Jaffrey
</a>
,
<a href="/name/nm0000818/">
Shabana Azmi
</a>
,
<a href="/name/nm0416077/">
Farida Jalal
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="3417" name="nv">
3,417
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0076696" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
From the legendary Oscar winning director Satyajit Ray
<br/>
<br/>
<b>
<a href="http://www.youtube.com/watch?v=LxiBYHmGxlM">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt1926313">
<a href="/title/tt1926313/">
<img alt="Pyaar Ka Punchnama" class="loadlate" data-tconst="tt1926313" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BNDI4MmJkM2ItYjZjMC00MzYxLWIwZWEtYzE5YWZhYmExM2I5XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
99.
</span>
<a href="/title/tt1926313/">
Pyaar Ka Punchnama
</a>
<span class="lister-item-year text-muted unbold">
(2011)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
UA
</span>
<span class="ghost">
|
</span>
<span class="runtime">
149 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Comedy, Drama, Romance
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.6
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt1926313" id="checkbox-tt1926313" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt1926313">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt1926313">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt1926313"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
Nishant starts dating Charu while his roommates Rajat and Vikrant already have girlfriends in Neha and Rhea respectively. Trouble starts when the guys feel that their girlfriends are dominating them.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm3060331/">
Luv Ranjan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm4449711/">
Kartik Aaryan
</a>
,
<a href="/name/nm4449831/">
Raayo S. Bakhirta
</a>
,
<a href="/name/nm4450033/">
Divyendu Sharma
</a>
,
<a href="/name/nm2410391/">
Nushrat Bharucha
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="20734" name="nv">
20,734
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt1926313" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
<div class="list-description">
<p>
<b>
<a href="http://www.youtube.com/watch?v=7pFE44rnRk0">
Click Here To Watch Trailer on Youtube
</a>
</b>
</p>
</div>
</div>
<div class="lister-item mode-detail">
<div class="lister-item-image ribbonize" data-tconst="tt0352314">
<a href="/title/tt0352314/">
<img alt="Ek Hasina Thi" class="loadlate" data-tconst="tt0352314" height="209" loadlate="https://m.media-amazon.com/images/M/MV5BYjhiZmZjYTAtY2M4Zi00YWMzLTg0YTctZjVhOTc0MjhkYTRhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UY209_CR2,0,140,209_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/4FyxwxECzL-U1J8.png" width="140"/>
</a>
</div>
<div class="lister-item-content">
<h3 class="lister-item-header">
<span class="lister-item-index unbold text-primary">
100.
</span>
<a href="/title/tt0352314/">
Ek Hasina Thi
</a>
<span class="lister-item-year text-muted unbold">
(2004)
</span>
</h3>
<p class="text-muted text-small">
<span class="certificate">
A
</span>
<span class="ghost">
|
</span>
<span class="runtime">
120 min
</span>
<span class="ghost">
|
</span>
<span class="genre">
Crime, Drama, Mystery
</span>
</p>
<div class="ipl-rating-widget">
<div class="ipl-rating-star small">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7.5
</span>
</div>
<div class="ipl-rating-interactive small ipl-rating-interactive--no-rating">
<input class="ipl-rating-interactive__state" data-reftag="ur_rt" data-tconst="tt0352314" id="checkbox-tt0352314" type="checkbox"/>
<label class="ipl-rating-interactive__star-container" for="checkbox-tt0352314">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
0
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</label>
<div class="ipl-rating-selector" data-value="0" id="ipl-rating-selector-tt0352314">
<div class="ipl-rating-selector__selector ipl-rating-selector__wrapper">
<div class="ipl-rating-selector__reset">
<a href="#void">
<svg class="ipl-icon ipl-cancel-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</a>
</div>
<span class="ipl-rating-selector__divider">
</span>
<form action="/ratings/_ajax/title" class="ipl-rating-selector__star-list" method="post">
<a class="ipl-rating-selector__star-link" data-value="1" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
1
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="2" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
2
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="3" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
3
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="4" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
4
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="5" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
5
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="6" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
6
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="7" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
7
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="8" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
8
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="9" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
9
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<a class="ipl-rating-selector__star-link" data-value="10" href="#void">
<div class="ipl-rating-star ipl-rating-interactive__star">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h24v24H0z" fill="none">
</path>
<path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
10
</span>
</div>
<div class="ipl-rating-star ipl-rating-interactive__star--empty">
<span class="ipl-rating-star__star">
<svg class="ipl-icon ipl-star-border-icon" fill="#000000" height="24" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z">
</path>
<path d="M0 0h24v24H0z" fill="none">
</path>
</svg>
</span>
<span class="ipl-rating-star__rating">
Rate
</span>
</div>
</a>
<fieldset class="ipl-rating-selector__fieldset">
<input name="tconst" type="hidden" value="tt0352314"/>
<input name="rating" type="text" value="0"/>
<input name="csrfToken" type="hidden" value=""/>
<input name="tracking_tag" type="hidden" value="ur_rt"/>
<input name="pageType" type="hidden" value="list"/>
<input name="subpageType" type="hidden" value="title"/>
</fieldset>
<noscript>
<input class="ipl-rating-selector__rating-submit" type="submit" value="Vote"/>
</noscript>
</form>
<span class="ipl-rating-selector__rating-value">
0
</span>
</div>
<div class="ipl-rating-selector__error ipl-rating-selector__wrapper">
<span>
Error: please try again.
</span>
</div>
</div>
<div class="ipl-rating-interactive__loader">
<img alt="loading" src="https://m.media-amazon.com/images/G/01/IMDb/spinning-progress.gif"/>
</div>
</div>
</div>
<p class="">
A woman falls for a charming and mysterious businessman. The whirlwind romance turns sour when she is framed for his underworld crimes. Now, finally out of prison she is ready for sweet revenge.
</p>
<p class="text-muted text-small">
Director:
<a href="/name/nm1437189/">
Sriram Raghavan
</a>
<span class="ghost">
|
</span>
Stars:
<a href="/name/nm0451307/">
Saif Ali Khan
</a>
,
<a href="/name/nm0007107/">
Urmila Matondkar
</a>
,
<a href="/name/nm0084443/">
Seema Biswas
</a>
,
<a href="/name/nm0820282/">
Aditya Srivastav
</a>
</p>
<p class="text-muted text-small">
<span class="text-muted">
Votes:
</span>
<span data-value="7143" name="nv">
7,143
</span>
</p>
<div class="wtw-option-standalone" data-baseref="wl_li" data-tconst="tt0352314" data-watchtype="minibar">
</div>
</div>
<div class="clear">
</div>
</div>
</div>
<div class="row text-center lister-working hidden">
</div>
<div class="footer filmosearch">
<div class="desc">
</div>
</div>
</div>
</div>
</div>
<div id="sidebar">
<!-- no content received for slot: top_rhs -->
<div class="list-create-widget">
<a href="/list/create">
<button class="btn-raised btn-raised--primary" type="button">
create a new list
</button>
</a>
<div class="create-list-description">
List your movie, TV & celebrity picks.
</div>
</div>
<div class="aux-content-widget-2 list-activity-widget">
<h3>
List Activity
</h3>
<div class="list-activity">
<span class="views-number-label">
Views:
</span>
<span class="views-number-value">
923,761
</span>
| in last week
<span class="views-number-value">
3,227
</span>
</div>
</div>
<div class="aux-content-widget-2" id="social-share-widget">
<h3>
Tell Your Friends
</h3>
<div class="social">
<div class="social_networking">
<span>
<strong>
Share
</strong>
this list:
</span>
<a class="share_icon facebook" href="https://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls009997493%2F" onclick="window.open("https://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls009997493%2F", 'newWindow', 'width=626, height=436'); return false;" target="_blank" title="Share on Facebook">
</a>
<a class="share_icon twitter" href="https://twitter.com/intent/tweet?text=%20-%20http%3A%2F%2Fwww.imdb.com%2Flist%2Fls009997493%2F" onclick="window.open("https://twitter.com/intent/tweet?text=%20-%20http%3A%2F%2Fwww.imdb.com%2Flist%2Fls009997493%2F", 'newWindow', 'width=815, height=436'); return false;" target="_blank" title="Share on Twitter">
</a>
<a class="share_icon share_url_link" href="http://www.imdb.com/list/ls009997493/" onclick="$('div.social input[name=share-link]').show().select(); return false;" title="Share the page">
</a>
</div>
<input name="share-link" readonly="" type="text" value="http://www.imdb.com/list/ls009997493/"/>
</div>
</div>
<div class="aux-content-widget-2" id="feedback-widget">
<strong>
Feedback?
</strong>
<a href="https://help.imdb.com/article/imdb/general-information/getsatisfaction-community-access-you-re-about-to-leave-imdb-com/GP4FF3REXES9AR3P">
Tell us what you think about this feature.
</a>
</div>
<div class="aux-content-widget-2">
<div id="listsWidget">
<h3>
Other Lists by dheeraj-ronaldo
</h3>
<div class="list-preview even">
<div class="list-preview-item-narrow">
<a href="/list/ls069478786">
<img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BMjBjYjBjNTUtOTg0Ni00Yzk2LTg1NWMtNjI2ODk2YjJmZGU0XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/>
</a>
</div>
<div class="list_name">
<strong>
<a href="/list/ls069478786">
Not Released
</a>
</strong>
</div>
<div class="list_meta">
a list of 2 titles
</div>
<div class="clear">
</div>
</div>
<div class="list-preview odd">
<div class="list-preview-item-narrow">
<a href="/list/ls075762028">
<img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BMTQyNTk5MTMxN15BMl5BanBnXkFtZTcwNTc0ODI1NA@@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/>
</a>
</div>
<div class="list_name">
<strong>
<a href="/list/ls075762028">
Unwatched
</a>
</strong>
</div>
<div class="list_meta">
a list of 86 titles
</div>
<div class="clear">
</div>
</div>
<div class="list-preview even">
<div class="list-preview-item-narrow">
<a href="/list/ls095973137">
<img alt="list image" class="" height="86" src="https://m.media-amazon.com/images/S/sash/ZobKRlv$0TyAyMM.png" title="list image" width="86"/>
</a>
</div>
<div class="list_name">
<strong>
<a href="/list/ls095973137">
To be deleted
</a>
</strong>
</div>
<div class="list_meta">
a list of 0 titles
</div>
<div class="clear">
</div>
</div>
<div class="list-preview odd">
<div class="list-preview-item-narrow">
<a href="/list/ls008311167">
<img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BNjZmM2MzNWItMTBjMi00MWZjLTk0YWEtZTMyMjliNWY2N2EzXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/8ZhQrGnWn9cWUVQ.png" title="list image" width="86"/>
</a>
</div>
<div class="list_name">
<strong>
<a href="/list/ls008311167">
IMDb 100 Worst Hindi Movies
</a>
</strong>
</div>
<div class="list_meta">
a list of 100 titles
</div>
<div class="clear">
</div>
</div>
<div class="list-preview even">
<div class="list-preview-item-narrow">
<a href="/list/ls008113978">
<img alt="list image" class="loadlate hidden" height="86" loadlate="https://m.media-amazon.com/images/M/MV5BYjNmYTAzZjgtYTE0NC00ZGUwLWEwYTYtMTI0ZTljYjI5MWVmXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_UX86_CR0,0,86,86_AL_.jpg" src="https://m.media-amazon.com/images/S/sash/mwwP38NFnDXdP7H.png" title="list image" width="86"/>
</a>
</div>
<div class="list_name">
<strong>
<a href="/list/ls008113978">
Best Cartoon Shows Of My Childhood
</a>
</strong>
</div>
<div class="list_meta">
a list of 35 titles
</div>
<div class="clear">
</div>
</div>
<div class="see-more">
<a href="/user/ur22491218/lists">
See all lists by dheeraj-ronaldo
</a>
»
</div>
</div>
</div>
</div>
</div>
<br class="clear"/>
<br class="clear"/>
</div>
<div id="rvi-div">
<div class="recently-viewed">
<div class="header">
<div class="rhs">
<a href="#" id="clear_rvi">
Clear your history
</a>
</div>
<h3>
Recently Viewed
</h3>
</div>
<div class="items">
</div>
</div>
</div>
<!-- no content received for slot: bottom_ad -->
<script type="text/javascript">
try {
window.lumierePlayer = window.lumierePlayer || {};
window.lumierePlayer.weblab = JSON.parse('{"IMDB_VIDEO_PLAYER_162496":"C"}');
} catch (error) {
if (window.ueLogError) {
window.ueLogError(error, {
logLevel: "WARN",
attribution: "videoplayer",
message: "Failed to parse weblabs for video player."
});
}
}
</script>
</div>
</div>
<script>
if (typeof uet == 'function') {
uet("bb", "desktopFooter", {wb: 1});
}
</script>
<div id="9754ea24-c8c4-4f36-b6e5-1a6e45034323">
<footer class="imdb-footer VUGIPjGgHtzvbHiU19iTQ">
<div class="_32mc4FXftSbwhpJwmGCYUQ">
<div class="ipc-page-content-container ipc-page-content-container--center" role="presentation">
<a aria-disabled="false" class="ipc-button ipc-button--double-padding ipc-button--center-align-content ipc-button--default-height ipc-button--core-accent1 ipc-button--theme-baseAlt imdb-footer__open-in-app-button" href="https://slyb.app.link/SKdyQ6A449" role="button" tabindex="0">
<div class="ipc-button__text">
Get the IMDb App
</div>
</a>
</div>
</div>
<div class="ipc-page-content-container ipc-page-content-container--center _2AR8CsLqQAMCT1_Q7eidSY" role="presentation">
<div class="imdb-footer__links">
<div class="_2Wc8yXs8SzGv7TVS-oOmhT">
<ul class="ipc-inline-list _1O3-k0VDASm1IeBrfofV4g baseAlt" role="presentation">
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Facebook" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://facebook.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Facebook">
<svg class="ipc-icon ipc-icon--facebook" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M20.896 2H3.104C2.494 2 2 2.494 2 3.104v17.792C2 21.506 2.494 22 3.104 22h9.579v-7.745h-2.607v-3.018h2.607V9.01c0-2.584 1.577-3.99 3.882-3.99 1.104 0 2.052.082 2.329.119v2.7h-1.598c-1.254 0-1.496.595-1.496 1.47v1.927h2.989l-.39 3.018h-2.6V22h5.097c.61 0 1.104-.494 1.104-1.104V3.104C22 2.494 21.506 2 20.896 2">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Instagram" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://instagram.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Instagram">
<svg class="ipc-icon ipc-icon--instagram" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M11.997 2.04c-2.715 0-3.056.011-4.122.06-1.064.048-1.79.217-2.426.463a4.901 4.901 0 0 0-1.771 1.151 4.89 4.89 0 0 0-1.153 1.767c-.247.635-.416 1.36-.465 2.422C2.011 8.967 2 9.307 2 12.017s.011 3.049.06 4.113c.049 1.062.218 1.787.465 2.422a4.89 4.89 0 0 0 1.153 1.767 4.901 4.901 0 0 0 1.77 1.15c.636.248 1.363.416 2.427.465 1.066.048 1.407.06 4.122.06s3.055-.012 4.122-.06c1.064-.049 1.79-.217 2.426-.464a4.901 4.901 0 0 0 1.77-1.15 4.89 4.89 0 0 0 1.154-1.768c.247-.635.416-1.36.465-2.422.048-1.064.06-1.404.06-4.113 0-2.71-.012-3.05-.06-4.114-.049-1.062-.218-1.787-.465-2.422a4.89 4.89 0 0 0-1.153-1.767 4.901 4.901 0 0 0-1.77-1.15c-.637-.247-1.363-.416-2.427-.464-1.067-.049-1.407-.06-4.122-.06m0 1.797c2.67 0 2.985.01 4.04.058.974.045 1.503.207 1.856.344.466.181.8.397 1.15.746.349.35.566.682.747 1.147.137.352.3.88.344 1.853.048 1.052.058 1.368.058 4.032 0 2.664-.01 2.98-.058 4.031-.044.973-.207 1.501-.344 1.853a3.09 3.09 0 0 1-.748 1.147c-.35.35-.683.565-1.15.746-.352.137-.88.3-1.856.344-1.054.048-1.37.058-4.04.058-2.669 0-2.985-.01-4.039-.058-.974-.044-1.504-.207-1.856-.344a3.098 3.098 0 0 1-1.15-.746 3.09 3.09 0 0 1-.747-1.147c-.137-.352-.3-.88-.344-1.853-.049-1.052-.059-1.367-.059-4.031 0-2.664.01-2.98.059-4.032.044-.973.207-1.501.344-1.853a3.09 3.09 0 0 1 .748-1.147c.35-.349.682-.565 1.149-.746.352-.137.882-.3 1.856-.344 1.054-.048 1.37-.058 4.04-.058">
</path>
<path d="M11.997 15.342a3.329 3.329 0 0 1-3.332-3.325 3.329 3.329 0 0 1 3.332-3.326 3.329 3.329 0 0 1 3.332 3.326 3.329 3.329 0 0 1-3.332 3.325m0-8.449a5.128 5.128 0 0 0-5.134 5.124 5.128 5.128 0 0 0 5.134 5.123 5.128 5.128 0 0 0 5.133-5.123 5.128 5.128 0 0 0-5.133-5.124m6.536-.203c0 .662-.537 1.198-1.2 1.198a1.198 1.198 0 1 1 1.2-1.197">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Twitch" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitch.tv/IMDb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitch">
<svg class="ipc-icon ipc-icon--twitch" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M3.406 2h18.596v12.814l-5.469 5.47H12.47L9.813 22.94H7.001v-2.657H2V5.594L3.406 2zm16.721 11.876v-10H5.125v13.126h4.22v2.656L12 17.002h5l3.126-3.126z">
</path>
<path d="M17.002 7.47v5.469h-1.875v-5.47zM12.001 7.47v5.469h-1.875v-5.47z">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="Twitter" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://twitter.com/imdb" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="Twitter">
<svg class="ipc-icon ipc-icon--twitter" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M8.29 19.936c7.547 0 11.675-6.13 11.675-11.446 0-.175-.004-.348-.012-.52A8.259 8.259 0 0 0 22 5.886a8.319 8.319 0 0 1-2.356.633 4.052 4.052 0 0 0 1.804-2.225c-.793.46-1.67.796-2.606.976A4.138 4.138 0 0 0 15.847 4c-2.266 0-4.104 1.802-4.104 4.023 0 .315.036.622.107.917a11.728 11.728 0 0 1-8.458-4.203 3.949 3.949 0 0 0-.556 2.022 4 4 0 0 0 1.826 3.348 4.136 4.136 0 0 1-1.858-.503l-.001.051c0 1.949 1.415 3.575 3.292 3.944a4.193 4.193 0 0 1-1.853.07c.522 1.597 2.037 2.76 3.833 2.793a8.34 8.34 0 0 1-5.096 1.722A8.51 8.51 0 0 1 2 18.13a11.785 11.785 0 0 0 6.29 1.807">
</path>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a aria-disabled="false" aria-label="YouTube" class="ipc-icon-link ipc-icon-link--baseAlt ipc-icon-link--onBase" href="https://youtube.com/imdb/" rel="nofollow noopener" role="button" tabindex="0" target="_blank" title="YouTube">
<svg class="ipc-icon ipc-icon--youtube" fill="currentColor" height="24" role="presentation" viewbox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M9.955 14.955v-5.91L15.182 12l-5.227 2.955zm11.627-7.769a2.505 2.505 0 0 0-1.768-1.768C18.254 5 12 5 12 5s-6.254 0-7.814.418c-.86.23-1.538.908-1.768 1.768C2 8.746 2 12 2 12s0 3.254.418 4.814c.23.86.908 1.538 1.768 1.768C5.746 19 12 19 12 19s6.254 0 7.814-.418a2.505 2.505 0 0 0 1.768-1.768C22 15.254 22 12 22 12s0-3.254-.418-4.814z">
</path>
</svg>
</a>
</li>
</ul>
</div>
<div>
<ul class="ipc-inline-list _1O3-k0VDASm1IeBrfofV4g baseAlt" role="presentation">
<li class="ipc-inline-list__item zgFV3U-XECrqVQnyDbx2B" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://slyb.app.link/SKdyQ6A449" target="_blank">
Get the IMDb App
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item X17C45Q1MH_7XboLL_EEG" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="?mode=desktop&ref_=m_ft_dsk">
View Full Site
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://help.imdb.com/imdb" target="_blank">
Help
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://help.imdb.com/article/imdb/general-information/imdb-site-index/GNCX7BHNSPBTFALQ#so" target="_blank">
Site Index
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://pro.imdb.com?ref_=ft_pro&rf=cons_tf_pro" target="_blank">
IMDbPro
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://www.boxofficemojo.com" target="_blank">
Box Office Mojo
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://developer.imdb.com/" target="_blank">
IMDb Developer
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
</ul>
</div>
<div>
<ul class="ipc-inline-list _1O3-k0VDASm1IeBrfofV4g baseAlt" role="presentation">
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="https://www.imdb.com/pressroom/?ref_=ft_pr">
Press Room
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://advertising.amazon.com/resources/ad-specs/imdb/" target="_blank">
Advertising
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://www.amazon.jobs/en/teams/imdb" target="_blank">
Jobs
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/conditions?ref_=ft_cou">
Conditions of Use
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color" href="/privacy?ref_=ft_pvc">
Privacy Policy
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<a class="ipc-link ipc-link--baseAlt ipc-link--touch-target ipc-link--inherit-color ipc-link--launch" href="https://www.amazon.com/b/?&node=5160028011" target="_blank">
Interest-Based Ads
<svg class="ipc-link__launch-icon" fill="#000000" height="10" viewbox="0 0 10 10" width="10" xmlns="http://www.w3.org/2000/svg">
<g>
<path d="M9,9 L1,9 L1,1 L4,1 L4,0 L-1.42108547e-14,0 L-1.42108547e-14,10 L10,10 L10,6 L9,6 L9,9 Z M6,0 L6,1 L8,1 L2.998122,6.03786058 L3.998122,7.03786058 L9,2 L9,4 L10,4 L10,0 L6,0 Z">
</path>
</g>
</svg>
</a>
</li>
<li class="ipc-inline-list__item" role="presentation">
<div class="_2mulh8fx3PjJyxvyLovP4w" id="teconsent">
</div>
</li>
</ul>
</div>
</div>
<div class="imdb-footer__logo _1eKbSAFyeJgUyBUy2VbcS_">
<svg aria-label="IMDb, an Amazon company" height="18" title="IMDb, an Amazon company" width="160" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path d="M26.707 2.45c-3.227 2.374-7.906 3.637-11.935 3.637C9.125 6.087 4.04 4.006.193.542-.11.27.161-.101.523.109 4.675 2.517 9.81 3.968 15.111 3.968c3.577 0 7.51-.74 11.127-2.27.546-.23 1.003.358.47.752z" id="ftr__a">
</path>
<path d="M4.113 1.677C3.7 1.15 1.385 1.427.344 1.552c-.315.037-.364-.237-.08-.436C2.112-.178 5.138.196 5.49.629c.354.437-.093 3.462-1.824 4.906-.266.222-.52.104-.401-.19.39-.97 1.261-3.14.848-3.668z" id="ftr__c">
</path>
<path d="M.435 1.805V.548A.311.311 0 0 1 .755.23l5.65-.001c.181 0 .326.13.326.317v1.078c-.002.181-.154.417-.425.791L3.378 6.582c1.087-.026 2.236.137 3.224.69.222.125.282.309.3.49v1.342c0 .185-.203.398-.417.287-1.74-.908-4.047-1.008-5.97.011-.197.104-.403-.107-.403-.292V7.835c0-.204.004-.552.21-.863l3.392-4.85H.761a.314.314 0 0 1-.326-.317z" id="ftr__e">
</path>
<path d="M2.247 9.655H.528a.323.323 0 0 1-.307-.29L.222.569C.222.393.37.253.554.253h1.601a.323.323 0 0 1 .313.295v1.148h.031C2.917.586 3.703.067 4.762.067c1.075 0 1.75.518 2.23 1.629C7.41.586 8.358.067 9.369.067c.722 0 1.508.296 1.99.963.545.74.433 1.813.433 2.757l-.002 5.551a.324.324 0 0 1-.331.317H9.74a.321.321 0 0 1-.308-.316l-.001-4.663c0-.37.032-1.296-.048-1.647-.128-.593-.514-.76-1.011-.76-.418 0-.85.278-1.027.722-.177.445-.161 1.185-.161 1.685v4.662a.323.323 0 0 1-.331.317H5.137a.322.322 0 0 1-.31-.316l-.001-4.663c0-.981.16-2.424-1.059-2.424-1.236 0-1.188 1.406-1.188 2.424v4.662a.324.324 0 0 1-.332.317z" id="ftr__g">
</path>
<path d="M4.037.067c2.551 0 3.931 2.184 3.931 4.96 0 2.684-1.524 4.814-3.931 4.814C1.533 9.84.169 7.656.169 4.935.17 2.195 1.55.067 4.037.067zm.015 1.796c-1.267 0-1.347 1.721-1.347 2.795 0 1.073-.016 3.368 1.332 3.368 1.332 0 1.395-1.851 1.395-2.98 0-.74-.031-1.629-.256-2.332-.193-.61-.578-.851-1.124-.851z" id="ftr__i">
</path>
<path d="M2.206 9.655H.493a.321.321 0 0 1-.308-.316L.182.54a.325.325 0 0 1 .33-.287h1.595c.15.007.274.109.305.245v1.346h.033C2.926.641 3.6.067 4.788.067c.77 0 1.524.277 2.006 1.037.449.703.449 1.887.449 2.739v5.535a.325.325 0 0 1-.33.277H5.19a.324.324 0 0 1-.306-.277V4.602c0-.962.113-2.37-1.075-2.37-.418 0-.803.278-.995.704-.24.537-.273 1.074-.273 1.666v4.736a.328.328 0 0 1-.335.317z" id="ftr__k">
</path>
<path d="M8.314 8.295c.11.156.134.341-.006.455-.35.294-.974.834-1.318 1.139l-.004-.004a.357.357 0 0 1-.406.04c-.571-.473-.673-.692-.986-1.142-.943.958-1.611 1.246-2.834 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.235-.483 3.233-.595V3.74c0-.409.032-.89-.209-1.243-.21-.315-.611-.445-.965-.445-.656 0-1.238.335-1.382 1.029-.03.154-.143.307-.298.315l-1.667-.18c-.14-.032-.297-.144-.256-.358C.859.842 2.684.234 4.32.234c.837 0 1.93.222 2.59.853.836.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.65 1.588zM5.253 5.706v-.37c-1.244 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.483 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__m">
</path>
<path d="M8.203 8.295c.11.156.135.341-.005.455-.352.294-.976.834-1.319 1.139l-.004-.004a.356.356 0 0 1-.406.04c-.571-.473-.673-.692-.985-1.142-.944.958-1.613 1.246-2.835 1.246-1.447 0-2.573-.89-2.573-2.672 0-1.39.756-2.337 1.833-2.8.933-.409 2.236-.483 3.233-.595V3.74c0-.409.032-.89-.21-1.243-.208-.315-.61-.445-.964-.445-.656 0-1.239.335-1.382 1.029-.03.154-.142.307-.298.315l-1.666-.18C.48 3.184.324 3.072.365 2.858.748.842 2.573.234 4.209.234c.836 0 1.93.222 2.59.853.835.78.755 1.818.755 2.95v2.67c0 .804.335 1.155.649 1.588zM5.142 5.706v-.37c-1.243 0-2.557.265-2.557 1.724 0 .742.386 1.244 1.045 1.244.482 0 .917-.297 1.19-.78.338-.593.322-1.15.322-1.818z" id="ftr__o">
</path>
<path d="M2.935 10.148c-.88 0-1.583-.25-2.11-.75-.527-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.511-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.151-1.136-.455-1.408-.304-.271-.821-.407-1.553-.407-.855 0-1.691.123-2.509.37-.285.087-.464.13-.539.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352C.79.938.89.87 1.039.808c.383-.173.87-.312 1.459-.417A9.997 9.997 0 0 1 4.255.234c1.177 0 2.045.244 2.602.731.557.489.836 1.233.836 2.233v6.338c0 .247-.124.37-.372.37h-.798c-.236 0-.373-.117-.41-.351l-.093-.612c-.445.383-.939.68-1.477.89-.54.21-1.076.315-1.608.315zm.446-1.39c.41 0 .836-.08 1.282-.241.447-.16.874-.395 1.283-.704v-1.89a8.408 8.408 0 0 0-1.97-.241c-1.401 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__q">
</path>
<path d="M.467 9.907c-.248 0-.372-.124-.372-.37V.883C.095.635.219.51.467.51h.817c.125 0 .22.026.288.075.068.05.115.142.14.277l.111.686C3 .672 4.24.234 5.541.234c.904 0 1.592.238 2.063.713.471.476.707 1.165.707 2.066v6.524c0 .246-.124.37-.372.37H6.842c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.979 0-1.94.315-2.881.946v6.875c0 .246-.125.37-.372.37H.467z" id="ftr__s">
</path>
<path d="M4.641 9.859c-1.462 0-2.58-.417-3.355-1.251C.51 7.774.124 6.566.124 4.985c0-1.569.4-2.783 1.2-3.641C2.121.486 3.252.055 4.714.055c.67 0 1.326.118 1.971.353.136.05.232.111.288.185.056.074.083.198.083.37v.501c0 .248-.08.37-.241.37-.062 0-.162-.018-.297-.055a5.488 5.488 0 0 0-1.544-.222c-1.04 0-1.79.262-2.248.787-.459.526-.688 1.362-.688 2.511v.241c0 1.124.232 1.949.697 2.474.465.525 1.198.788 2.203.788a5.98 5.98 0 0 0 1.672-.26c.136-.037.23-.056.279-.056.161 0 .242.124.242.371v.5c0 .162-.025.279-.075.353-.05.074-.148.142-.297.204-.608.259-1.314.389-2.119.389z" id="ftr__u">
</path>
<path d="M4.598 10.185c-1.413 0-2.516-.438-3.31-1.316C.497 7.992.1 6.769.1 5.199c0-1.555.397-2.773 1.19-3.65C2.082.673 3.185.235 4.598.235c1.412 0 2.515.438 3.308 1.316.793.876 1.19 2.094 1.19 3.65 0 1.569-.397 2.792-1.19 3.669-.793.878-1.896 1.316-3.308 1.316zm0-1.483c1.747 0 2.62-1.167 2.62-3.502 0-2.323-.873-3.484-2.62-3.484S1.977 2.877 1.977 5.2c0 2.335.874 3.502 2.62 3.502z" id="ftr__w">
</path>
<path d="M.396 9.907c-.248 0-.371-.124-.371-.37V.883C.025.635.148.51.396.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.594C2.943.64 4.102.234 5.23.234c1.152 0 1.934.438 2.342 1.315C8.798.672 10.025.234 11.25.234c.856 0 1.512.24 1.971.722.458.482.688 1.168.688 2.057v6.524c0 .246-.124.37-.372.37h-1.097c-.248 0-.371-.124-.371-.37V3.533c0-.618-.119-1.075-.354-1.372-.235-.297-.607-.445-1.115-.445-.904 0-1.815.278-2.732.834.012.087.018.18.018.278v6.709c0 .246-.124.37-.372.37H6.42c-.249 0-.372-.124-.372-.37V3.533c0-.618-.118-1.075-.353-1.372-.235-.297-.608-.445-1.115-.445-.942 0-1.847.272-2.714.815v7.006c0 .246-.125.37-.372.37H.396z" id="ftr__y">
</path>
<path d="M.617 13.724c-.248 0-.371-.124-.371-.37V.882c0-.247.123-.37.371-.37h.818c.248 0 .39.123.428.37l.093.594C2.897.648 3.944.234 5.096.234c1.203 0 2.15.435 2.845 1.307.693.87 1.04 2.053 1.04 3.548 0 1.52-.365 2.736-1.096 3.65-.731.915-1.704 1.372-2.918 1.372-1.116 0-2.076-.365-2.881-1.094v4.337c0 .246-.125.37-.372.37H.617zM4.54 8.628c1.71 0 2.566-1.149 2.566-3.447 0-1.173-.208-2.044-.624-2.612-.415-.569-1.05-.853-1.904-.853-.88 0-1.711.284-2.491.853v5.17c.805.593 1.623.889 2.453.889z" id="ftr__A">
</path>
<path d="M2.971 10.148c-.88 0-1.583-.25-2.11-.75-.526-.501-.79-1.171-.79-2.011 0-.902.322-1.622.967-2.159.644-.538 1.512-.806 2.602-.806.694 0 1.475.104 2.342.315V3.513c0-.667-.15-1.136-.455-1.408-.304-.271-.821-.407-1.552-.407-.855 0-1.692.123-2.509.37-.285.087-.465.13-.54.13-.148 0-.223-.111-.223-.334v-.5c0-.16.025-.278.075-.352.05-.074.148-.142.297-.204.384-.173.87-.312 1.46-.417A9.991 9.991 0 0 1 4.29.234c1.177 0 2.045.244 2.603.731.557.489.836 1.233.836 2.233v6.338c0 .247-.125.37-.372.37h-.799c-.236 0-.372-.117-.41-.351l-.092-.612a5.09 5.09 0 0 1-1.478.89 4.4 4.4 0 0 1-1.608.315zm.446-1.39c.41 0 .836-.08 1.283-.241.446-.16.874-.395 1.282-.704v-1.89a8.403 8.403 0 0 0-1.97-.241c-1.4 0-2.1.537-2.1 1.612 0 .47.13.831.39 1.084.26.254.632.38 1.115.38z" id="ftr__C">
</path>
<path d="M.503 9.907c-.248 0-.371-.124-.371-.37V.883C.132.635.255.51.503.51h.818a.49.49 0 0 1 .288.075c.068.05.115.142.14.277l.111.686C3.037.672 4.277.234 5.578.234c.904 0 1.592.238 2.063.713.47.476.706 1.165.706 2.066v6.524c0 .246-.123.37-.371.37H6.879c-.248 0-.372-.124-.372-.37V3.625c0-.655-.133-1.137-.4-1.445-.266-.31-.684-.464-1.254-.464-.98 0-1.94.315-2.882.946v6.875c0 .246-.124.37-.371.37H.503z" id="ftr__E">
</path>
<path d="M1.988 13.443c-.397 0-.75-.043-1.059-.13-.15-.037-.251-.1-.307-.185a.684.684 0 0 1-.084-.37v-.483c0-.234.093-.352.28-.352.06 0 .154.013.278.037.124.025.291.037.502.037.459 0 .82-.114 1.087-.343.266-.228.505-.633.716-1.213l.353-.945L.167.675C.08.465.037.316.037.23c0-.149.086-.222.26-.222h1.115c.198 0 .334.03.409.093.075.062.148.197.223.407l2.602 7.19 2.51-7.19c.074-.21.148-.345.222-.407.075-.062.211-.093.41-.093h1.04c.174 0 .261.073.261.222 0 .086-.044.235-.13.445l-4.09 10.377c-.334.853-.725 1.464-1.17 1.835-.446.37-1.017.556-1.711.556z" id="ftr__G">
</path>
</defs>
<g fill="none" fill-rule="evenodd">
<g transform="translate(31.496 11.553)">
<mask fill="currentColor" id="ftr__b">
<use xlink:href="#ftr__a">
</use>
</mask>
<path d="M.04 6.088h26.91V.04H.04z" fill="currentColor" mask="url(#ftr__b)">
</path>
</g>
<g transform="translate(55.433 10.797)">
<mask fill="currentColor" id="ftr__d">
<use xlink:href="#ftr__c">
</use>
</mask>
<path d="M.05 5.664h5.564V.222H.05z" fill="currentColor" mask="url(#ftr__d)">
</path>
</g>
<g transform="translate(55.433 .97)">
<mask fill="currentColor" id="ftr__f">
<use xlink:href="#ftr__e">
</use>
</mask>
<path d="M.11 9.444h6.804V.222H.111z" fill="currentColor" mask="url(#ftr__f)">
</path>
</g>
<g transform="translate(33.008 .97)">
<mask fill="currentColor" id="ftr__h">
<use xlink:href="#ftr__g">
</use>
</mask>
<path d="M.191 9.655h11.611V.04H.192z" fill="currentColor" mask="url(#ftr__h)">
</path>
</g>
<g transform="translate(62.992 .97)">
<mask fill="currentColor" id="ftr__j">
<use xlink:href="#ftr__i">
</use>
</mask>
<path d="M.141 9.867h7.831V.04H.142z" fill="currentColor" mask="url(#ftr__j)">
</path>
</g>
<g transform="translate(72.063 .97)">
<mask fill="currentColor" id="ftr__l">
<use xlink:href="#ftr__k">
</use>
</mask>
<path d="M.171 9.655h7.076V.04H.17z" fill="currentColor" mask="url(#ftr__l)">
</path>
</g>
<g transform="translate(46.11 .718)">
<mask fill="currentColor" id="ftr__n">
<use xlink:href="#ftr__m">
</use>
</mask>
<path d="M.181 10.059h8.225V.232H.18z" fill="currentColor" mask="url(#ftr__n)">
</path>
</g>
<g transform="translate(23.685 .718)">
<mask fill="currentColor" id="ftr__p">
<use xlink:href="#ftr__o">
</use>
</mask>
<path d="M.05 10.059h8.255V.232H.05z" fill="currentColor" mask="url(#ftr__p)">
</path>
</g>
<g transform="translate(0 .718)">
<mask fill="currentColor" id="ftr__r">
<use xlink:href="#ftr__q">
</use>
</mask>
<path d="M.03 10.15h7.68V.231H.03z" fill="currentColor" mask="url(#ftr__r)">
</path>
</g>
<g transform="translate(10.33 .718)">
<mask fill="currentColor" id="ftr__t">
<use xlink:href="#ftr__s">
</use>
</mask>
<path d="M.07 9.907h8.255V.232H.071z" fill="currentColor" mask="url(#ftr__t)">
</path>
</g>
<g transform="translate(84.157 .97)">
<mask fill="currentColor" id="ftr__v">
<use xlink:href="#ftr__u">
</use>
</mask>
<path d="M.11 9.867h7.046V.04H.11z" fill="currentColor" mask="url(#ftr__v)">
</path>
</g>
<g transform="translate(92.472 .718)">
<mask fill="currentColor" id="ftr__x">
<use xlink:href="#ftr__w">
</use>
</mask>
<path d="M.08 10.21h9.041V.232H.081z" fill="currentColor" mask="url(#ftr__x)">
</path>
</g>
<g transform="translate(103.811 .718)">
<mask fill="currentColor" id="ftr__z">
<use xlink:href="#ftr__y">
</use>
</mask>
<path d="M.02 9.907H13.93V.232H.02z" fill="currentColor" mask="url(#ftr__z)">
</path>
</g>
<g transform="translate(120.189 .718)">
<mask fill="currentColor" id="ftr__B">
<use xlink:href="#ftr__A">
</use>
</mask>
<path d="M.242 13.747H9.01V.232H.242z" fill="currentColor" mask="url(#ftr__B)">
</path>
</g>
<g transform="translate(130.772 .718)">
<mask fill="currentColor" id="ftr__D">
<use xlink:href="#ftr__C">
</use>
</mask>
<path d="M.06 10.15h7.68V.231H.06z" fill="currentColor" mask="url(#ftr__D)">
</path>
</g>
<g transform="translate(141.102 .718)">
<mask fill="currentColor" id="ftr__F">
<use xlink:href="#ftr__E">
</use>
</mask>
<path d="M.131 9.907h8.224V.232H.131z" fill="currentColor" mask="url(#ftr__F)">
</path>
</g>
<g transform="translate(150.677 1.222)">
<mask fill="currentColor" id="ftr__H">
<use xlink:href="#ftr__G">
</use>
</mask>
<path d="M.02 13.455h9.071V0H.021z" fill="currentColor" mask="url(#ftr__H)">
</path>
</g>
</g>
</svg>
</div>
<p class="imdb-footer__copyright _2-iNNCFskmr4l2OFN2DRsf">
© 1990-
<!-- -->
2021
<!-- -->
by IMDb.com, Inc.
</p>
</div>
</footer>
<svg style="width:0;height:0;overflow:hidden;display:block" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs>
<lineargradient id="ipc-svg-gradient-tv-logo-t" x1="31.973%" x2="153.413%" y1="53.409%" y2="-16.853%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
<lineargradient id="ipc-svg-gradient-tv-logo-v" x1="-38.521%" x2="104.155%" y1="84.997%" y2="14.735%">
<stop offset="21.89%" stop-color="#D01F49">
</stop>
<stop offset="83.44%" stop-color="#E8138B">
</stop>
</lineargradient>
</defs>
</svg>
</div>
<script type="text/javascript">
if (!window.RadWidget) {
window.RadWidget = {
registerReactWidgetInstance: function(input) {
window.RadWidget[input.widgetName] = window.RadWidget[input.widgetName] || [];
window.RadWidget[input.widgetName].push({
id: input.instanceId,
props: JSON.stringify(input.model)
})
},
getReactWidgetInstances: function(widgetName) {
return window.RadWidget[widgetName] || []
}
};
}
</script>
<script type="text/javascript">
window['RadWidget'].registerReactWidgetInstance({
widgetName: "IMDbConsumerSiteFooterFeatureV1",
instanceId: "9754ea24-c8c4-4f36-b6e5-1a6e45034323",
model: {"ResponsiveFooterModel":{"showIMDbTVLink":false,"desktopLink":"?mode=desktop&ref_=m_ft_dsk","showDesktopLink":true}}
});
</script>
<script>
if (typeof uet == 'function') {
uet("be", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "desktopFooter", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "LoadHeaderJS", {wb: 1});
}
</script>
<script src="https://m.media-amazon.com/images/S/sash/EbJ50esdfIcjt2R.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/Q$vpA-vTfEkXQYW.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/EtkwkDagnYhJNZk.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/3wL0We-DlKJbHux.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/pEaYC0JytMRJx29.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/D-WNvtV4PDafd7p.js" type="text/javascript">
</script>
<script src="https://m.media-amazon.com/images/S/sash/N8lg9BrsJ0WtXtp.js" type="text/javascript">
</script>
<script type="text/javascript">
function jQueryOnReady(remaining_count) {
if (window.jQuery && typeof $.fn.watchlistRibbon !== 'undefined') {
jQuery(
function() {
var listConfig = imdb.userlists.getListerInitConfig(
{
listId : 'ls009997493',
refMarker : 'ttls',
mode : 'detail',
page : 1,
viewMoreOption : 'PAGINATE',
sortField : 'list_order',
sortDirection : 'asc',
showtimesDate : '',
explore : '',
ajaxURL : '/list/ls009997493/_ajax',
externalCallbacks : [window.imdb.CS.loadMoreUpdate],
}
);
imdb.userlists.listerInit(listConfig);
}
);
jQuery(
function() {
var isAdvertisingThemed = !!(window.custom && window.custom.full_page && window.custom.full_page.theme),
url = "https://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&href=http%3A%2F%2Fwww.imdb.com%2Flist%2Fls009997493%2F&colorscheme=light",
like = document.getElementById('iframe_like');
if (!isAdvertisingThemed && like) {
like.src = url;
like.onload = function () {
if (typeof uex == 'function') { uex('ld', 'facebook_like_iframe', {wb: 1}); }
};
} else if (isAdvertisingThemed) {
$('.social_networking_like').closest('.aux-content-widget-2').hide();
}
}
);
} else if (remaining_count > 0) {
setTimeout(function() { jQueryOnReady(remaining_count-1) }, 100);
}
}
jQueryOnReady(50);
</script>
<script type="text/javascript">
window.webpackManifest_IMDbConsumerSiteFooterFeature={}
</script>
<script type="text/javascript">
window.webpackManifest_IMDbConsumerSiteNavFeature={}
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/81HQzdfMCdL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61SeeyqsNHL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/41uka3OgCRL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31ROAIgElzL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61Ka2ezTX9L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/019vMGkrlkL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31VYLn8dVDL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01qhBQyMr+L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/21QhnrxvhtL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01EjywnajPL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01eEXY1YetL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/21a9eB+eAFL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/412zhLIJTNL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/81+iGRo8ZxL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61vDTVmJCNL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/41TeoVoT7fL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31827uXCh4L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/31P6K1kIR-L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/41Pr-woKLCL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/51GDom0+d0L.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/11UNuUz7BzL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/21n5fdlWBhL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/01X4+ME2ObL.js" type="text/javascript">
</script>
<script crossorigin="anonymous" src="https://m.media-amazon.com/images/I/61bggxN4hhL.js" type="text/javascript">
</script>
<script>
if (typeof uet == 'function') {
uet("bb", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_started');
}
</script>
<script class="ics-branch-sdk-script">
if (document.domain.startsWith('m.')) {
function logBranchMetric(metricName, n) {
if (window && window.ue && typeof window.ue.count === 'function') {
window.ue.count(metricName, n);
}
}
logBranchMetric('BranchSDK.Requests', 1);
if (uet) {
uet('bb', 'LoadBranchSDK', {wb: 1});
}
(function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://cdn.branch.io/branch-2.58.0.min.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"addListener applyCode autoAppIndex banner closeBanner closeJourney creditHistory credits data deepview deepviewCta first getCode init link logout redeem referrals removeListener sendSMS setBranchViewData setIdentity track validateCode trackCommerceEvent logEvent disableTracking".split(" "), 0);
branch.init('key_live_jdSfREMXW6WE9FcCt5HWFbhgswmprlIn', { timeout: 2000 }, (err, data) => {
if (uet && uex) {
uet('be', 'LoadBranchSDK', {wb: 1});
uex('ld', 'LoadBranchSDK', {wb: 1} )
}
if (err) {
console.log('Branch init error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
logBranchMetric('BranchSDK.Initialized', 1);
branch.setBranchViewData(
{
'$deeplink_path': '/list/ls009997493/'
}
);
branch.setIdentity('000-0000000-0000000', (err, data) => {
if (err) {
console.log('Branch setIdentity error', err);
logBranchMetric('BranchSDK.Error', 1);
} else {
logBranchMetric('BranchSDK.Error', 0);
}
});
}
});
}
</script>
<script>
if ('csm' in window) {
csm.measure('csm_RenderBranchSDK_finished');
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "RenderBranchSDK", {wb: 1});
}
</script>
<script>
if (typeof uet == 'function') {
uet("be", "LoadFooterJS", {wb: 1});
}
</script>
<script>
if (typeof uex == 'function') {
uex("ld", "LoadFooterJS", {wb: 1});
}
</script>
<div id="servertime" time="2820">
</div>
<script>
if (typeof uet == 'function') {
uet("be");
}
</script>
</body>
</html>
IMDB_BOLLYWOOD_MOVIES
| Name | Imdb_Rating | Year_of_Release | |
|---|---|---|---|
| 0 | Rang De Basanti | 8.1 | (2006) |
| 1 | 3 Idiots | 8.4 | (2009) |
| 2 | Taare Zameen Par | 8.4 | (2007) |
| 3 | Dil Chahta Hai | 8.1 | (2001) |
| 4 | Swades: We, the People | 8.2 | (2004) |
| ... | ... | ... | ... |
| 95 | Wake Up Sid | 7.6 | (2009) |
| 96 | Rangeela | 7.5 | (1995) |
| 97 | Shatranj Ke Khilari | 7.7 | (1977) |
| 98 | Pyaar Ka Punchnama | 7.6 | (2011) |
| 99 | Ek Hasina Thi | 7.5 | (2004) |
100 rows × 3 columns
QUESTION4.Write a python program to scrap book name, author name, genre and book review of any 5 books from ‘www.bookpage.com’
import pandas as pd
from bs4 import BeautifulSoup
import requests
def book(url):
book_names=[]
author_names=[]
genres=[]
reviews=[]
page=requests.get(url)
soup=BeautifulSoup(page.content,'html.parser')
bookpage=soup.find_all('h4',class_='italic')
for i in bookpage:
book_names.append(i.find('a').text)
book_author=soup.find_all('p',class_='sans bold')
for i in book_author:
author_names.append(i.text.replace('\n',''))
book_genre=soup.find_all('p',class_='genre-links hidden-phone')
for i in book_genre:
genres.append(i.find('a').text)
book_review=soup.find_all('p',class_='excerpt')
for i in book_review:
reviews.append(i.text.replace('\n',''))
import pandas as pd
books=pd.DataFrame({})
books['Book Name']=book_names
books['Author Name']=author_names
books['Genre']=genres
books['Book Reviews']=reviews
books=books.head()
return(books)
Page=book('https://bookpage.com/reviews')
Page
| Book Name | Author Name | Genre | Book Reviews | |
|---|---|---|---|---|
| 0 | ★ Fallout | Steve Sheinkin | Children's | Fallout is a compelling read that provides a r... |
| 1 | Seeing Ghosts | Kat Chow | Nonfiction | Like the experience of grief itself, Kat Chow’... |
| 2 | Hero of Two Worlds | Mike Duncan | Nonfiction | Mike Duncan’s insightful, impressive biography... |
| 3 | ★ The Maidens | Alex Michaelides, Louise Brealey, Kobna Holdbr... | Audio | Actors Louise Brealey and Kobna Holdbrook-Smit... |
| 4 | The Guide | Peter Heller | Fiction | The Guide is a glorious getaway in every sense... |
QUESTION5. Write a python program to scrape cricket rankings from ‘www.icc-cricket.com’. You have toscrape:
i) Top 10 ODI teams in men’s cricket along with the records for matches, points and rating
def odi_teams(url):
teams=[]
matches=[]
points=[]
ratings=[]
odi_team_page=requests.get(url)
odi_team_soup=BeautifulSoup(odi_team_page.content,'html.parser')
odi_team=odi_team_soup.find_all('span',class_='u-hide-phablet')
for i in odi_team:
teams.append(i.text)
teams=teams[:10]
match_row1=odi_team_soup.find_all('td',class_='rankings-block__banner--matches')
for i in match_row1:
matches.append(i.text)
# For other rows
match_row2=odi_team_soup.find_all('td',class_='table-body__cell u-center-text')
for i in range(0,len(match_row2),2):
matches.append(match_row2[i].text)
matches=matches[:10]
# For point also top and other rows have differnt format
odi_point1=odi_team_soup.find_all('td',class_='rankings-block__banner--points')
for i in odi_point1:
points.append(i.text)
odi_point2=odi_team_soup.find_all('td',class_='table-body__cell u-center-text')
for i in range(1,len(match_row2),2):
points.append(odi_point2[i].text)
points=points[:10]
odi_rating=odi_team_soup.find_all('td',class_='rankings-block__banner--rating u-text-right')
for i in odi_rating:
ratings.append(i.text.replace('\n','').replace(' ',''))
odi_rating=odi_team_soup.find_all('td',class_='table-body__cell u-text-right rating')
for i in odi_rating:
ratings.append(i.text.replace('\n','').replace(' ',''))
ratings=ratings[:10]
import pandas as pd
teams_odi=pd.DataFrame({})
teams_odi['Teams']=teams
teams_odi['Matches']=matches
teams_odi['Points']=points
teams_odi['Ratings']=ratings
return(teams_odi)
ODI_team_men=odi_teams('https://www.icc-cricket.com/rankings/mens/team-rankings/odi')
ODI_team_men
| teams | matches | points | ratings | |
|---|---|---|---|---|
| 0 | New Zealand | 17 | 2,054 | 121 |
| 1 | England | 32 | 3,793 | 119 |
| 2 | Australia | 28 | 3,244 | 116 |
| 3 | India | 32 | 3,624 | 113 |
| 4 | South Africa | 22 | 2,267 | 103 |
| 5 | Pakistan | 27 | 2,524 | 93 |
| 6 | Bangladesh | 29 | 2,639 | 91 |
| 7 | West Indies | 30 | 2,523 | 84 |
| 8 | Sri Lanka | 29 | 2,303 | 79 |
| 9 | Afghanistan | 17 | 1,054 | 62 |
ii) Top 10 ODI Batsmen in men along with the records of their team and rating.
def odi_batsmen(url):
players=[]
teams=[]
ratings=[]
batsmen_page=requests.get(url)
batsmen_soup=BeautifulSoup(batsmen_page.content,'html.parser')
# First Row of the table
odi_player=batsmen_soup.find_all('div',class_='rankings-block__banner--name-large')
for i in odi_player:
players.append(i.text)
# Other rows in the table
odi_player=batsmen_soup.find_all('td',class_='table-body__cell rankings-table__name name')
for i in odi_player:
players.append(i.find('a').text)
players=players[:10]
# First Row of the table
odi_team=batsmen_soup.find_all('div',class_='rankings-block__banner--nationality')
for i in odi_team:
teams.append(i.text.replace('\n',''))
# Other rows in the table
odi_team=batsmen_soup.find_all('span',class_='table-body__logo-text')
for i in odi_team:
teams.append(i.text.replace('\n',''))
teams=teams[:10]
# First Row of the table
odi_rating=batsmen_soup.find_all('div',class_='rankings-block__banner--rating')
for i in odi_rating:
ratings.append(i.text)
# Other rows in the table
odi_rating=batsmen_soup.find_all('td',class_='table-body__cell rating')
for i in odi_rating:
ratings.append(i.text)
ratings=ratings[:10]
import pandas as pd
batsmen_odi=pd.DataFrame({})
batsmen_odi['Players']=players
batsmen_odi['Teams']=teams
batsmen_odi['Ratings']=ratings
return(batsmen_odi)
top_odi_batsmen=odi_batsmen('https://www.icc-cricket.com/rankings/mens/player-rankings/odi/batting')
top_odi_batsmen
| Players | Teams | Ratings | |
|---|---|---|---|
| 0 | Babar Azam | PAK | 873 |
| 1 | Virat Kohli | IND | 844 |
| 2 | Rohit Sharma | IND | 813 |
| 3 | Ross Taylor | NZ | 801 |
| 4 | Aaron Finch | AUS | 779 |
| 5 | Jonny Bairstow | ENG | 775 |
| 6 | David Warner | AUS | 762 |
| 7 | Quinton de Kock | SA | 758 |
| 8 | Shai Hope | WI | 758 |
| 9 | Kane Williamson | NZ | 754 |
iii) Top 10 ODI bowlers along with the records of their team and rating.
def odi_bowler(url):
players=[]
teams=[]
ratings=[]
bowler_page=requests.get(url)
bowler_soup=BeautifulSoup(bowler_page.content,'html.parser')
# First Row of the table
odi_player=bowler_soup.find_all('div',class_='rankings-block__banner--name-large')
for i in odi_player:
players.append(i.text)
# Other rows in the table
odi_player=bowler_soup.find_all('td',class_='table-body__cell rankings-table__name name')
for i in odi_player:
players.append(i.find('a').text)
players=players[:10]
# First Row of the table
odi_team=bowler_soup.find_all('div',class_='rankings-block__banner--nationality')
for i in odi_team:
teams.append(i.text.replace('\n',''))
# Other rows in the table
odi_team=bowler_soup.find_all('span',class_='table-body__logo-text')
for i in odi_team:
teams.append(i.text.replace('\n',''))
teams=teams[:10]
# First Row of the table
odi_rating=bowler_soup.find_all('div',class_='rankings-block__banner--rating')
for i in odi_rating:
ratings.append(i.text)
# Other rows in the table
odi_rating=bowler_soup.find_all('td',class_='table-body__cell rating')
for i in odi_rating:
ratings.append(i.text)
ratings=ratings[:10]
import pandas as pd
bowler_odi=pd.DataFrame({})
bowler_odi['players']=players
bowler_odi['teams']=teams
bowler_odi['ratings']=ratings
return(bowler_odi)
top_odi_bowler=odi_bowler('https://www.icc-cricket.com/rankings/mens/player-rankings/odi/bowling')
top_odi_bowler
| players | teams | ratings | |
|---|---|---|---|
| 0 | Trent Boult | NZ | 737 |
| 1 | Josh Hazlewood | AUS | 709 |
| 2 | Mujeeb Ur Rahman | AFG | 708 |
| 3 | Chris Woakes | ENG | 700 |
| 4 | Mehedi Hasan | BAN | 692 |
| 5 | Matt Henry | NZ | 691 |
| 6 | Jasprit Bumrah | IND | 679 |
| 7 | Mitchell Starc | AUS | 652 |
| 8 | Shakib Al Hasan | BAN | 650 |
| 9 | Kagiso Rabada | SA | 648 |
QUESTION6. Write a python program to scrape cricket rankings from ‘www.icc-cricket.com’. You have toscrape:
i) Top 10 ODI teams in women’s cricket along with the records for matches, points and rating.
def odi_women_team(url):
teams=[]
matches=[]
points=[]
ratings=[]
odi_team_page=requests.get(url)
odi_team_soup=BeautifulSoup(odi_team_page.content,'html.parser')
odi_team=odi_team_soup.find_all('span',class_='u-hide-phablet')
for i in odi_team:
teams.append(i.text)
teams=teams[:10]
match_row1=odi_team_soup.find_all('td',class_='rankings-block__banner--matches')
for i in match_row1:
matches.append(i.text)
# For other rows
match_row2=odi_team_soup.find_all('td',class_='table-body__cell u-center-text')
for i in range(0,len(match_row2),2):
matches.append(match_row2[i].text)
matches=matches[:10]
# For point also top and other rows have differnt format
odi_point1=odi_team_soup.find_all('td',class_='rankings-block__banner--points')
for i in odi_point1:
points.append(i.text)
odi_point2=odi_team_soup.find_all('td',class_='table-body__cell u-center-text')
for i in range(1,len(match_row2),2):
points.append(odi_point2[i].text)
points=points[:10]
odi_rating=odi_team_soup.find_all('td',class_='rankings-block__banner--rating u-text-right')
for i in odi_rating:
ratings.append(i.text.replace('\n','').replace(' ',''))
odi_rating=odi_team_soup.find_all('td',class_='table-body__cell u-text-right rating')
for i in odi_rating:
ratings.append(i.text.replace('\n','').replace(' ',''))
ratings=ratings[:10]
import pandas as pd
teams_odi=pd.DataFrame({})
teams_odi['Teams']=teams
teams_odi['Matches']=matches
teams_odi['Points']=points
teams_odi['Ratings']=ratings
return(teams_odi)
ODI_team_women=odi_women_team('https://www.icc-cricket.com/rankings/womens/team-rankings/odi')
ODI_team_women
| Teams | Matches | Points | Ratings | |
|---|---|---|---|---|
| 0 | Australia | 18 | 2,955 | 164 |
| 1 | England | 20 | 2,370 | 119 |
| 2 | South Africa | 24 | 2,828 | 118 |
| 3 | India | 23 | 2,535 | 110 |
| 4 | New Zealand | 21 | 1,947 | 93 |
| 5 | West Indies | 17 | 1,427 | 84 |
| 6 | Pakistan | 20 | 1,496 | 75 |
| 7 | Bangladesh | 5 | 306 | 61 |
| 8 | Sri Lanka | 11 | 519 | 47 |
| 9 | Ireland | 2 | 25 | 13 |
ii) Top 10 women’s ODI players along with the records of their team and rating.
def odi_women(url):
players=[]
teams=[]
ratings=[]
batsmen_page=requests.get(url)
batsmen_soup=BeautifulSoup(batsmen_page.content,'html.parser')
# First Row of the table
odi_player=batsmen_soup.find_all('div',class_='rankings-block__banner--name-large')
for i in odi_player:
players.append(i.text)
# Other rows in the table
odi_player=batsmen_soup.find_all('td',class_='table-body__cell rankings-table__name name')
for i in odi_player:
players.append(i.find('a').text)
players=players[:10]
# First Row of the table
odi_team=batsmen_soup.find_all('div',class_='rankings-block__banner--nationality')
for i in odi_team:
teams.append(i.text.replace('\n',''))
# Other rows in the table
odi_team=batsmen_soup.find_all('span',class_='table-body__logo-text')
for i in odi_team:
teams.append(i.text.replace('\n',''))
teams=teams[:10]
# First Row of the table
odi_rating=batsmen_soup.find_all('div',class_='rankings-block__banner--rating')
for i in odi_rating:
ratings.append(i.text)
# Other rows in the table
odi_rating=batsmen_soup.find_all('td',class_='table-body__cell rating')
for i in odi_rating:
ratings.append(i.text)
ratings=ratings[:10]
import pandas as pd
batsmen_odi=pd.DataFrame({})
batsmen_odi['Players']=players
batsmen_odi['Teams']=teams
batsmen_odi['Ratings']=ratings
return(batsmen_odi)
top10_odi_batsmen=odi_women('https://www.icc-cricket.com/rankings/womens/player-rankings/odi/batting')
top10_odi_batsmen
| Players | Teams | Ratings | |
|---|---|---|---|
| 0 | Mithali Raj | IND | 762 |
| 1 | Lizelle Lee | SA | 758 |
| 2 | Alyssa Healy | AUS | 756 |
| 3 | Tammy Beaumont | ENG | 754 |
| 4 | Stafanie Taylor | WI | 736 |
| 5 | Meg Lanning | AUS | 723 |
| 6 | Amy Satterthwaite | NZ | 715 |
| 7 | Natalie Sciver | ENG | 706 |
| 8 | Smriti Mandhana | IND | 701 |
| 9 | Laura Wolvaardt | SA | 683 |
iii) Top 10 women’s ODI all-rounder along with the records of their team and rating.
def odi_women_allrounder(url):
players=[]
teams=[]
ratings=[]
bowler_page=requests.get(url)
bowler_soup=BeautifulSoup(bowler_page.content,'html.parser')
# First Row of the table
odi_player=bowler_soup.find_all('div',class_='rankings-block__banner--name-large')
for i in odi_player:
players.append(i.text)
# Other rows in the table
odi_player=bowler_soup.find_all('td',class_='table-body__cell rankings-table__name name')
for i in odi_player:
players.append(i.find('a').text)
players=players[:10]
# First Row of the table
odi_team=bowler_soup.find_all('div',class_='rankings-block__banner--nationality')
for i in odi_team:
teams.append(i.text.replace('\n',''))
# Other rows in the table
odi_team=bowler_soup.find_all('span',class_='table-body__logo-text')
for i in odi_team:
teams.append(i.text.replace('\n',''))
teams=teams[:10]
# First Row of the table
odi_rating=bowler_soup.find_all('div',class_='rankings-block__banner--rating')
for i in odi_rating:
ratings.append(i.text)
# Other rows in the table
odi_rating=bowler_soup.find_all('td',class_='table-body__cell rating')
for i in odi_rating:
ratings.append(i.text)
ratings=ratings[:10]
import pandas as pd
bowler_odi=pd.DataFrame({})
bowler_odi['Players']=players
bowler_odi['Teams']=teams
bowler_odi['Ratings']=ratings
return(bowler_odi)
top10_odi_bowler=odi_women_allrounder('https://www.icc-cricket.com/rankings/womens/player-rankings/odi/all-rounder')
top10_odi_bowler
| Players | Teams | Ratings | |
|---|---|---|---|
| 0 | Marizanne Kapp | SA | 418 |
| 1 | Ellyse Perry | AUS | 418 |
| 2 | Stafanie Taylor | WI | 394 |
| 3 | Natalie Sciver | ENG | 365 |
| 4 | Deepti Sharma | IND | 331 |
| 5 | Jess Jonassen | AUS | 307 |
| 6 | Ashleigh Gardner | AUS | 252 |
| 7 | Dane van Niekerk | SA | 243 |
| 8 | Sophie Devine | NZ | 242 |
| 9 | Katherine Brunt | ENG | 239 |
QUESTION7. Write a python program to scrape details of all the mobile phones under Rs. 20,000 listed on Amazon.in. The scraped data should include Product Name, Price, Image URL and Average Rating.
import pandas as pd
from bs4 import BeautifulSoup
import requests
amazon_page=requests.get('https://www.amazon.in/best-mobile-under-20000/s?k=best+mobile+under+20000')
amazon_soup= BeautifulSoup(amazon_page.content,'html.parser')
Product=[]
Price=[]
Rating=[]
Image=[]
item= amazon_soup.find_all('span',class_='a-size-medium a-color-base a-text-normal')
for i in item:
Product.append(i.text)
price= amazon_soup.find_all('span',class_='a-price-whole')
for i in price:
Price.append(i.text)
rating= amazon_soup.find_all('span',class_='a-icon-alt')
for i in rating:
Rating.append(i.text)
image= amazon_soup.find_all('div', class_='a-section aok-relative s-image-fixed-height')
for i in image:
Image.append(i.find('img'))
print(len('Product'),len('Price'),len('Rating'),len('Image'))
7 5 6 5
Product=Product[0:5]
Price=Price[0:5]
Rating=Rating[0:5]
image=image[0:5]
import pandas as pd
Mobiles=pd.DataFrame({})
Mobiles['Product']=Product
Mobiles['Price']=Price
Mobiles['Image']=Image[0:5]
Mobiles['Rating']=Rating
Mobiles
| Product | Price | Image | Rating | |
|---|---|---|---|---|
| 0 | Redmi 9A (Nature Green, 2GB RAM, 32GB Storage)... | 6,999 | [] | 4.2 out of 5 stars |
| 1 | Redmi 9 (Sky Blue, 4GB RAM, 64GB Storage) | 2.... | 8,999 | [] | 4.2 out of 5 stars |
| 2 | Samsung Galaxy M31 (Space Black, 6GB RAM, 128G... | 14,999 | [] | 4.3 out of 5 stars |
| 3 | Redmi 9 Power (Mighty Black 4GB RAM 64GB Stora... | 10,999 | [] | 4.2 out of 5 stars |
| 4 | realme C11 (2021) (Cool Grey, 2GB RAM, 32GB St... | 6,999 | [] | 4.1 out of 5 stars |
QUESTION8. Write a python program to extract information about the local weather from the National Weather Service website of USA, https://www.weather.gov/ for the city, San Francisco. You need to extract data about 7 day extended forecast display for the city. The data should include period, short description, temperature and description.
from bs4 import BeautifulSoup
import requests
import pandas as pd
page=requests.get("http://forecast.weather.gov/MapClick.php?lat=37.7772&lon=-122.4168")
soup = BeautifulSoup(page.content, 'html.parser')
seven_day=soup.find(id="seven-day-forecast")
forecast_items = seven_day.find_all(class_="tombstone-container")
forecast_items
tonight = forecast_items[0]
print(tonight.prettify())
short_description = [sd.get_text() for sd in seven_day.select(".tombstone-container .short-desc")]
temperature = [t.get_text() for t in seven_day.select(".tombstone-container .temp")]
description= [d["title"] for d in seven_day.select(".tombstone-container img")]
period_tags=seven_day.select(".tombstone-container .period-name")
periods=[pt.get_text() for pt in period_tags]
periods
import pandas as pd
weather = pd.DataFrame({
"period": periods,
"short_description": short_description,
"temperature": temperature,
"description":description
})
<div class="tombstone-container"> <p class="period-name"> Today <br/> <br/> </p> <p> <img alt="Today: Widespread haze between noon and 4pm. Areas of smoke after 4pm. Sunny, with a high near 76. Breezy, with a light and variable wind becoming west 17 to 22 mph in the afternoon. Winds could gust as high as 28 mph. " class="forecast-icon" src="DualImage.php?i=few&j=hz" title="Today: Widespread haze between noon and 4pm. Areas of smoke after 4pm. Sunny, with a high near 76. Breezy, with a light and variable wind becoming west 17 to 22 mph in the afternoon. Winds could gust as high as 28 mph. "/> </p> <p class="short-desc"> Sunny then <br/> Haze and <br/> Breezy </p> <p class="temp temp-high"> High: 76 °F </p> </div>
weather
| period | short_description | temperature | description | |
|---|---|---|---|---|
| 0 | Today | Sunny thenHaze andBreezy | High: 76 °F | Today: Widespread haze between noon and 4pm. A... |
| 1 | Tonight | Haze | Low: 58 °F | Tonight: Widespread haze before 4am. Mostly cl... |
| 2 | Saturday | Haze | High: 77 °F | Saturday: Widespread haze before 2pm. Sunny, w... |
| 3 | SaturdayNight | Mostly Clearand Breezythen PartlyCloudy | Low: 57 °F | Saturday Night: Mostly clear, with a low aroun... |
| 4 | Sunday | Mostly Sunnythen Sunnyand Breezy | High: 73 °F | Sunday: Sunny, with a high near 73. Breezy, wi... |
| 5 | SundayNight | Mostly Clearand Breezythen PartlyCloudy | Low: 56 °F | Sunday Night: Partly cloudy, with a low around... |
| 6 | Monday | Mostly Sunny | High: 68 °F | Monday: Mostly sunny, with a high near 68. |
| 7 | MondayNight | Mostly Clear | Low: 55 °F | Monday Night: Mostly clear, with a low around 55. |
| 8 | Tuesday | Sunny | High: 66 °F | Tuesday: Sunny, with a high near 66. |
QUESTION9. Write a python program to scrape fresher job listings from ‘https://internshala.com/’. It should include job title, company name, CTC, and apply date.
import pandas as pd
from bs4 import BeautifulSoup
import requests
page=requests.get("https://internshala.com/fresher-jobs/")
soup=BeautifulSoup(page.content,'html.parser')
jobtitle=soup.find_all("div",class_="heading_4_5 profile")
Job=[]
for i in jobtitle:
for j in i.find_all("a"):
Job.append(j.text.replace("\n",""))
company=soup.find_all("div",class_="heading_6 company_name")
companyname=[]
for i in company:
for j in i.find_all("a"):
companyname.append(j.text.replace("\n",""))
salary=soup.find_all("div",class_="item_body")
ctc=[]
for i in salary:
ctc.append(i.text.replace("\n\n\starts\xa0Immediately\n",""))
apply=soup.find_all("div",class_="item_body")
applydate=[]
for i in apply:
applydate.append(i.text.replace("\n\n ",""))
internshala=pd.DataFrame({})
internshala['Jobtitle']=Job[0:10]
internshala['companyname']=companyname[0:10]
internshala['CTC']=ctc[0:10]
internshala['Applydate']=applydate[0:10]
internshala
| Jobtitle | companyname | CTC | Applydate | |
|---|---|---|---|---|
| 0 | OMNI SPORT LEADER | Decathlon Sport India ... | \nStarts Immediately\n | \nStarts Immediately\n |
| 1 | Executive/Senior Executive - Partnerships | Freecharge Payments Te... | \n 3 - 4 LPA ... | \n 3 - 4 LPA ... |
| 2 | Executive - Sales | Freecharge Payments Te... | 18 Sep' 21 | 18 Sep' 21 |
| 3 | Junior Operations Executive | Freecharge Payments Te... | \nStarts Immediately\n | \nStarts Immediately\n |
| 4 | Trainee Software Engineer | NuWare Systems ... | \n 3 - 4.2 LPA ... | \n 3 - 4.2 LPA ... |
| 5 | Associate (Development) | Pratham InfoTech Found... | 11 Sep' 21 | 11 Sep' 21 |
| 6 | Corporate Sales Associate | Best Roadways Limited ... | \nStarts Immediately\n | \nStarts Immediately\n |
| 7 | Sales Executive | Hedge Homes ... | \n 3 - 3.5 LPA ... | \n 3 - 3.5 LPA ... |
| 8 | Organizational Behavior Specialist | SysCloud Technologies ... | 11 Sep' 21 | 11 Sep' 21 |
| 9 | International Online Sales Executive | Intesome ... | \nStarts Immediately\n | \nStarts Immediately\n |